mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 18:40:05 +08:00
41 lines
942 B
VimL
41 lines
942 B
VimL
" ___vital___
|
|
" NOTE: lines between '" ___vital___' is generated by :Vitalize.
|
|
" Do not mofidify the code nor insert new lines before '" ___vital___'
|
|
function! s:_SID() abort
|
|
return matchstr(expand('<sfile>'), '<SNR>\zs\d\+\ze__SID$')
|
|
endfunction
|
|
execute join(['function! vital#_over#Unlocker#Holder#File#import() abort', printf("return map({'is_makeable': '', 'make': ''}, \"vital#_over#function('<SNR>%s_' . v:key)\")", s:_SID()), 'endfunction'], "\n")
|
|
delfunction s:_SID
|
|
" ___vital___
|
|
scriptencoding utf-8
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
let s:obj = {}
|
|
|
|
function! s:obj.get()
|
|
return readfile(self.__file)
|
|
endfunction
|
|
|
|
|
|
function! s:obj.set(value)
|
|
call writefile(a:value, self.__file)
|
|
return self
|
|
endfunction
|
|
|
|
|
|
function! s:is_makeable(expr)
|
|
return filereadable(a:expr)
|
|
endfunction
|
|
|
|
|
|
function! s:make(expr)
|
|
let result = deepcopy(s:obj)
|
|
let result.__file = a:expr
|
|
return result
|
|
endfunction
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|