Test: Fix vader_setup dep from 946

This commit is contained in:
Tinmarino
2020-07-30 18:07:50 -04:00
parent 0a5a33af19
commit 5651e744a6
3 changed files with 19 additions and 18 deletions

View File

@ -9,13 +9,6 @@ if exists('b:did_ftplugin')
endif
let b:did_ftplugin = 1 " Don't load another plugin for this buffer
" Enable/disable commentstring %%%s
if !exists('g:vimwiki_commentstring')
setlocal commentstring=%%%s
elseif g:vimwiki_commentstring != ""
let &l:commentstring=g:vimwiki_commentstring
endif
if vimwiki#vars#get_global('conceallevel') && exists('+conceallevel')
let &l:conceallevel = vimwiki#vars#get_global('conceallevel')
endif
@ -142,6 +135,10 @@ if v:version > 703
setlocal formatoptions+=j
endif
" Set commentstring %%%s
let &l:commentstring = vimwiki#vars#get_wikilocal('commentstring')
let &formatlistpat = vimwiki#vars#get_wikilocal('rxListItem')