By the way: Apparently I committed the initial commit of fzf.vim and the
one adding the TODO accidentally together in 86af2da785
("vim:ftplug:fzf:TODO: Look up other Unicode chars").
6 lines
281 B
VimL
6 lines
281 B
VimL
" Do not highlight Unicode box drawing chars as non-ascii
|
|
" TODO: Look into fzf source code for all other possible Unicode chars
|
|
let w:ignore_non_ascii_chars = '─│╭╮╰╯▌┃' .. get(w:, 'ignore_non_ascii_chars', '')
|
|
" Update after changes
|
|
call HighlightNonASCIIChars()
|