diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2024-10-28 02:17:06 +0100 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-28 02:17:06 +0100 | 
| commit | 1bde22d4f33e8208ddafb11100991cde23c62c47 (patch) | |
| tree | 27d1853b2eb19571dd7a1607f131b7b52858abdc /.config | |
| parent | a60df102e10dfb4d6407e457398aa010750591f9 (diff) | |
nvim: Prefer single quotes
Diffstat (limited to '.config')
| -rw-r--r-- | .config/nvim/plugin/zwspace.vim | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/.config/nvim/plugin/zwspace.vim b/.config/nvim/plugin/zwspace.vim index 2333bdb..4ba91a2 100644 --- a/.config/nvim/plugin/zwspace.vim +++ b/.config/nvim/plugin/zwspace.vim @@ -11,10 +11,10 @@ function s:ConcealZWSpaces()  		unlet w:zwspaces  	endif  	let w:zwspaces = [ -		\	matchadd('Conceal', "\u200B"), -		\	matchadd('Conceal', "\u200C"), -		\	matchadd('Conceal', "\u200D"), -		\	matchadd('Conceal', "\uFEFF"), +		\	matchadd('Conceal', '\u200B'), +		\	matchadd('Conceal', '\u200C'), +		\	matchadd('Conceal', '\u200D'), +		\	matchadd('Conceal', '\uFEFF'),  		\ ]  endfunction |