Skip to content

Commit b64bc36

Browse files
committed
Fix syntax tests fail cause of bundled markdown
We prepend the paths to runtimepath so that vim bundled markdown syntax is not loaded.
1 parent 8f6cb3a commit b64bc36

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/vimrc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ set nocompatible
33
let $LANG='en_US'
44

55
filetype off
6-
set runtimepath+=../
7-
set runtimepath+=../build/tabular/
8-
set runtimepath+=../build/vim-toml/
9-
set runtimepath+=../build/vim-json/
10-
set runtimepath+=../build/vader.vim/
6+
execute 'set runtimepath=../,' . &runtimepath
7+
execute 'set runtimepath=../build/tabular/,' . &runtimepath
8+
execute 'set runtimepath=../build/vim-toml/,' . &runtimepath
9+
execute 'set runtimepath=../build/vim-json/,' . &runtimepath
10+
execute 'set runtimepath=../build/vader.vim/,' . &runtimepath
1111
filetype on
1212

1313
filetype plugin indent on

0 commit comments

Comments
 (0)