Skip to content

Commit 7b26ede

Browse files
committed
Add missing helper functions to vimrc
1 parent d298418 commit 7b26ede

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

test/vimrc

+16
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,19 @@ set rtp+=../vader.vim
33
set rtp+=../
44
filetype plugin indent on
55
syntax enable
6+
7+
function! Nix_GetScriptID(fname) abort
8+
let l:snlist = ''
9+
redir => l:snlist
10+
silent! scriptnames
11+
redir END
12+
let l:mx = '^\s*\(\d\+\):\s*\(.*\)$'
13+
for l:line in split(l:snlist, "\n")
14+
if stridx(substitute(l:line, '\\', '/', 'g'), a:fname) >= 0
15+
return substitute(l:line, l:mx, '\1', '')
16+
endif
17+
endfor
18+
endfunction
19+
function! Nix_GetFunc(fname, funcname) abort
20+
return function('<SNR>' . Nix_GetScriptID(a:fname) . '_' . a:funcname)
21+
endfunction

0 commit comments

Comments
 (0)