43 lines
1.2 KiB
VimL
43 lines
1.2 KiB
VimL
" ___vital___
|
|
" NOTE: lines between '" ___vital___' is generated by :Vitalize.
|
|
" Do not mofidify the code nor insert new lines before '" ___vital___'
|
|
if v:version > 703 || v:version == 703 && has('patch1170')
|
|
function! vital#_easymotion#Over#Commandline#Modules#import() abort
|
|
return map({'get': '', 'make': '', '_vital_loaded': ''}, 'function("s:" . v:key)')
|
|
endfunction
|
|
else
|
|
function! s:_SID() abort
|
|
return matchstr(expand('<sfile>'), '<SNR>\zs\d\+\ze__SID$')
|
|
endfunction
|
|
execute join(['function! vital#_easymotion#Over#Commandline#Modules#import() abort', printf("return map({'get': '', 'make': '', '_vital_loaded': ''}, \"function('<SNR>%s_' . v:key)\")", s:_SID()), 'endfunction'], "\n")
|
|
delfunction s:_SID
|
|
endif
|
|
" ___vital___
|
|
scriptencoding utf-8
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
|
|
function! s:_vital_loaded(V)
|
|
let s:V = a:V
|
|
endfunction
|
|
|
|
|
|
function! s:get(name)
|
|
if exists("s:" . a:name)
|
|
return s:{a:name}
|
|
endif
|
|
let s:{a:name} = s:V.import('Over.Commandline.Modules.' . a:name)
|
|
return s:{a:name}
|
|
endfunction
|
|
|
|
|
|
function! s:make(name, ...)
|
|
let module = s:get(a:name)
|
|
return call(module.make, a:000, module)
|
|
endfunction
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|