vim:plugs: Update vimwiki for Unicode support

My fix was merged to support unicode table separators. This has the
benefit that `|` now can be used in the cell content.
This commit is contained in:
2023-06-25 23:49:10 +02:00
parent 99d5e1ff21
commit dd3de8d709
2 changed files with 6 additions and 1 deletions

View File

@@ -30,3 +30,8 @@ if (exists("g:loaded_tmux_navigator"))
" Disable tmux navigator when zooming the Vim pane " Disable tmux navigator when zooming the Vim pane
let g:tmux_navigator_disable_when_zoomed = 1 let g:tmux_navigator_disable_when_zoomed = 1
endif endif
if (get(g:, 'loaded_vimwiki'))
" Use vertical box drawing character as separator
call vimwiki#vars#set_syntaxlocal('rxTableSep', '│')
endif