Skip to content

Commit 42048f4

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 42048f4

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+
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/
1111
filetype on
1212

1313
filetype plugin indent on

0 commit comments

Comments
 (0)