Fix losing the highlight of headers when switching colorschemes

Funnily, the code to fix this was there for over 8 years now, but didn't
work.
This commit is contained in:
EinfachToll 2018-10-28 21:04:24 +01:00
parent 7969810b49
commit 6a6aeff013

View File

@ -231,11 +231,11 @@ endif
augroup vimwiki
autocmd!
autocmd ColorScheme * call s:setup_cleared_syntax()
for s:ext in s:known_extensions
exe 'autocmd BufNewFile,BufRead *'.s:ext.' call s:setup_new_wiki_buffer()'
exe 'autocmd BufEnter *'.s:ext.' call s:setup_buffer_enter()'
exe 'autocmd BufLeave *'.s:ext.' call s:setup_buffer_leave()'
exe 'autocmd ColorScheme *'.s:ext.' call s:setup_cleared_syntax()'
" Format tables when exit from insert mode. Do not use textwidth to
" autowrap tables.
if vimwiki#vars#get_global('table_auto_fmt')