X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/691d961a643064ee1feddba8371ff12e44678f5a..c58a4f3586473f7476510714698e60835fcb94ef:/test/vimrc diff --git a/test/vimrc b/test/vimrc index fe53a758..84a85b09 100644 --- a/test/vimrc +++ b/test/vimrc @@ -1,14 +1,17 @@ set nocompatible -set rtp+=../ -set rtp+=../build/tabular/ -set rtp+=../build/vim-toml/ -set rtp+=../build/vim-json/ -set rtp+=../build/vader.vim/ + let $LANG='en_US' + +filetype off +set runtimepath+=../ +set runtimepath+=../build/tabular/ +set runtimepath+=../build/vim-toml/ +set runtimepath+=../build/vim-json/ +set runtimepath+=../build/vader.vim/ filetype on -filetype plugin on -filetype indent on -syntax on + +filetype plugin indent on +syntax enable function! Markdown_GetScriptID(fname) abort let l:snlist = '' @@ -22,6 +25,7 @@ function! Markdown_GetScriptID(fname) abort endif endfor endfunction + function! Markdown_GetFunc(fname, funcname) abort return function('' . Markdown_GetScriptID(a:fname) . '_' . a:funcname) endfunction