X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/a3f273839d1b45fe73b3bc48e1d7a8c6d1422187..c08a22b391deecf8b6bb45cbb4a6ffffeb50dfc7:/test/vimrc diff --git a/test/vimrc b/test/vimrc index 015febf..638ab3f 100644 --- a/test/vimrc +++ b/test/vimrc @@ -2,7 +2,10 @@ set nocompatible set rtp+=../ set rtp+=../build/tabular/ set rtp+=../build/vim-toml/ +set rtp+=../build/vim-json/ set rtp+=../build/vader.vim/ +set rtp-=~/.vim +set rtp-=~/.vim/after let $LANG='en_US' filetype on filetype plugin on @@ -10,14 +13,14 @@ filetype indent on syntax on function! Markdown_GetScriptID(fname) abort - let a:snlist = '' - redir => a:snlist + let l:snlist = '' + redir => l:snlist silent! scriptnames redir END - let a:mx = '^\s*\(\d\+\):\s*\(.*\)$' - for a:line in split(a:snlist, "\n") - if stridx(substitute(a:line, '\\', '/', 'g'), a:fname) >= 0 - return substitute(a:line, a:mx, '\1', '') + let l:mx = '^\s*\(\d\+\):\s*\(.*\)$' + for l:line in split(l:snlist, "\n") + if stridx(substitute(l:line, '\\', '/', 'g'), a:fname) >= 0 + return substitute(l:line, l:mx, '\1', '') endif endfor endfunction