mirror of
https://github.com/itchyny/lightline.vim.git
synced 2025-11-11 13:03:50 -05:00
add .themisrc
This commit is contained in:
20
test/.themisrc
Normal file
20
test/.themisrc
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
let s:sids = {}
|
||||||
|
function! s:sid(path) abort
|
||||||
|
if has_key(s:sids, a:path)
|
||||||
|
return s:sids[a:path]
|
||||||
|
endif
|
||||||
|
redir => scriptnames
|
||||||
|
silent! scriptnames
|
||||||
|
redir END
|
||||||
|
for line in split(scriptnames, '\n')
|
||||||
|
if line =~# a:path
|
||||||
|
let sid = matchstr(line, '\v^\s*\zs\d+\ze')
|
||||||
|
let s:sids[a:path] = sid
|
||||||
|
return sid
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! SID(name) abort
|
||||||
|
return function(printf("\<SNR>%d_%s", s:sid('autoload/lightline.vim'), a:name))
|
||||||
|
endfunction
|
||||||
Reference in New Issue
Block a user