Cosmetic: retab to expandtab all and add modeline

This commit is contained in:
haya14busa 2014-01-17 17:39:26 +09:00
parent c4e1a44787
commit 5bed6b3f9e
8 changed files with 1250 additions and 1244 deletions

View File

@ -1424,7 +1424,6 @@ function! s:EasyMotion(regexp, direction, visualmode, is_exclusive, ...) " {{{
endtry
endfunction " }}}
"}}}
"}}}
" == Call init {{{
call EasyMotion#init()
"}}}
@ -1432,4 +1431,4 @@ call EasyMotion#init()
let &cpo = s:save_cpo
unlet s:save_cpo
" }}}
" vim: fdm=marker:noet:ts=4:sw=4:sts=4
" vim: fdm=marker:et:ts=4:sw=4:sts=4

View File

@ -1,7 +1,7 @@
"=============================================================================
" FILE: autoload/EasyMotion/cmigemo.vim
" AUTHOR: haya14busa
" Last Change: 14 Jan 2014.
" Last Change: 17 Jan 2014.
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
@ -107,4 +107,4 @@ endfunction "}}}
let &cpo = s:save_cpo
unlet s:save_cpo
" }}}
" vim: fdm=marker:et:ts=4:sw=4:sts=4

View File

@ -139,3 +139,4 @@ let s:default_key_mapping = {
let &cpo = s:save_cpo
unlet s:save_cpo
" }}}
" vim: fdm=marker:et:ts=4:sw=4:sts=4

View File

@ -1,7 +1,7 @@
"=============================================================================
" FILE: autoload/EasyMotion/helper.vim
" AUTHOR: haya14busa
" Last Change: 14 Jan 2014.
" Last Change: 17 Jan 2014.
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
@ -89,3 +89,4 @@ endfunction "}}}
let &cpo = s:save_cpo
unlet s:save_cpo
" }}}
" vim: fdm=marker:et:ts=4:sw=4:sts=4

View File

@ -76,4 +76,4 @@ endfunction "}}}
let &cpo = s:save_cpo
unlet s:save_cpo
" }}}
" vim: fdm=marker:noet:ts=4:sw=4:sts=4
" vim: fdm=marker:et:ts=4:sw=4:sts=4

View File

@ -21,3 +21,4 @@ let EasyMotion#sticky_table#jp = {
let &cpo = s:save_cpo
unlet s:save_cpo
" }}}
" vim: fdm=marker:et:ts=4:sw=4:sts=4

View File

@ -12,6 +12,7 @@ endif
let g:EasyMotion_loaded = 1
" }}}
" == Saving 'cpoptions' {{{
let s:save_cpo = &cpo
set cpo&vim

View File

@ -1087,3 +1087,6 @@ describe 'EasyMotion is jump motion'
"}}}
end
"}}}
" vim: fdm=marker:et:ts=4:sw=4:sts=4