Skip to content

Commit

Permalink
Fix syntax tests fail cause of bundled markdown
Browse files Browse the repository at this point in the history
We prepend the paths to runtimepath so that vim bundled markdown
syntax is not loaded.
  • Loading branch information
shirosaki committed Sep 20, 2024
1 parent 8f6cb3a commit b64bc36
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ set nocompatible
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/
execute 'set runtimepath=../,' . &runtimepath
execute 'set runtimepath=../build/tabular/,' . &runtimepath
execute 'set runtimepath=../build/vim-toml/,' . &runtimepath
execute 'set runtimepath=../build/vim-json/,' . &runtimepath
execute 'set runtimepath=../build/vader.vim/,' . &runtimepath
filetype on

filetype plugin indent on
Expand Down

0 comments on commit b64bc36

Please sign in to comment.