diff --git a/autoload/sy.vim b/autoload/sy.vim index 92e2c82..316e192 100644 --- a/autoload/sy.vim +++ b/autoload/sy.vim @@ -1,3 +1,5 @@ +" vim: et sw=2 sts=2 + scriptencoding utf-8 if exists('b:autoloaded_sy') @@ -129,5 +131,3 @@ function! sy#toggle() abort call sy#start(g:sy_path) endif endfunction - -" vim: et sw=2 sts=2 diff --git a/autoload/sy/debug.vim b/autoload/sy/debug.vim index 5d5af51..6a2111d 100644 --- a/autoload/sy/debug.vim +++ b/autoload/sy/debug.vim @@ -1,3 +1,5 @@ +" vim: et sw=2 sts=2 + scriptencoding utf-8 if exists('b:autoloaded_sy_debug') @@ -19,5 +21,3 @@ function! sy#debug#list_active_buffers() abort endfor endfor endfunction - -" vim: et sw=2 sts=2 diff --git a/autoload/sy/highlight.vim b/autoload/sy/highlight.vim index b51d6de..aff812d 100644 --- a/autoload/sy/highlight.vim +++ b/autoload/sy/highlight.vim @@ -1,3 +1,5 @@ +" vim: et sw=2 sts=2 + scriptencoding utf-8 if exists('b:autoloaded_sy_highlight') @@ -101,5 +103,3 @@ function! sy#highlight#line_toggle() abort call sy#start(g:sy_path) endfunction - -" vim: et sw=2 sts=2 diff --git a/autoload/sy/jump.vim b/autoload/sy/jump.vim index 6858fe9..a58edba 100644 --- a/autoload/sy/jump.vim +++ b/autoload/sy/jump.vim @@ -1,3 +1,5 @@ +" vim: et sw=2 sts=2 + scriptencoding utf-8 if exists('b:autoloaded_sy_jump') @@ -36,5 +38,3 @@ function! sy#jump#prev_hunk(count) execute 'sign jump '. hunk.ids[0] .' file='. g:sy_path endif endfunction - -" vim: et sw=2 sts=2 diff --git a/autoload/sy/repo.vim b/autoload/sy/repo.vim index 983b78a..44189a0 100644 --- a/autoload/sy/repo.vim +++ b/autoload/sy/repo.vim @@ -1,3 +1,5 @@ +" vim: et sw=2 sts=2 + scriptencoding utf-8 if exists('b:autoloaded_sy_repo') @@ -314,5 +316,3 @@ function! sy#repo#get_stats() abort return g:sy[g:sy_path].stats endfunction - -" vim: et sw=2 sts=2 diff --git a/autoload/sy/sign.vim b/autoload/sy/sign.vim index 17410fb..c57d5e8 100644 --- a/autoload/sy/sign.vim +++ b/autoload/sy/sign.vim @@ -1,3 +1,5 @@ +" vim: et sw=2 sts=2 + scriptencoding utf-8 if exists('b:autoloaded_sy_sign') @@ -53,5 +55,3 @@ function! sy#sign#remove_all(path) abort let g:sy[a:path].hunks = [] let g:sy[a:path].stats = [0, 0, 0] endfunction - -" vim: et sw=2 sts=2 diff --git a/autoload/sy/util.vim b/autoload/sy/util.vim index 505b06d..7f59105 100644 --- a/autoload/sy/util.vim +++ b/autoload/sy/util.vim @@ -1,3 +1,5 @@ +" vim: et sw=2 sts=2 + scriptencoding utf-8 if exists('b:autoloaded_sy_util') @@ -25,5 +27,3 @@ endfunction function! sy#util#separator() abort return !exists('+shellslash') || &shellslash ? '/' : '\' endfunction - -" vim: et sw=2 sts=2 diff --git a/plugin/signify.vim b/plugin/signify.vim index a5f01f6..53a618f 100644 --- a/plugin/signify.vim +++ b/plugin/signify.vim @@ -1,3 +1,5 @@ +" vim: et sw=2 sts=2 + scriptencoding utf-8 if exists('g:loaded_signify') || !has('signs') || &cp @@ -91,5 +93,3 @@ endif if empty(maparg('[c', 'n')) nmap [c (signify-prev-hunk) endif - -" vim: et sw=2 sts=2