From 6a55f616cc6b0facec6757ee1c798f0c7734608f Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Mon, 23 Sep 2024 12:12:51 +0200 Subject: [PATCH] vim:ftplug:fzf: Add another Unicode UI character By the way: Apparently I committed the initial commit of fzf.vim and the one adding the TODO accidentally together in 86af2da785d7 ("vim:ftplug:fzf:TODO: Look up other Unicode chars"). --- .config/vim/ftplugin/fzf.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/vim/ftplugin/fzf.vim b/.config/vim/ftplugin/fzf.vim index fca11a5..9b589b5 100644 --- a/.config/vim/ftplugin/fzf.vim +++ b/.config/vim/ftplugin/fzf.vim @@ -1,5 +1,5 @@ " 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', '') +let w:ignore_non_ascii_chars = '─│╭╮╰╯▌┃' .. get(w:, 'ignore_non_ascii_chars', '') " Update after changes call HighlightNonASCIIChars()