diff options
author | Josh Rahm <rahm@google.com> | 2022-08-24 11:41:47 -0600 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2022-08-30 23:18:13 -0600 |
commit | 9a4934da2e2c9646299286f179a7d480bfbdf7af (patch) | |
tree | 8a4f12018e4d0a92df222f5f4e6f4d939f487f8a | |
parent | 877894e98c2abb4a482661c2243ad4b80a5cc242 (diff) | |
download | rneovim-9a4934da2e2c9646299286f179a7d480bfbdf7af.tar.gz rneovim-9a4934da2e2c9646299286f179a7d480bfbdf7af.tar.bz2 rneovim-9a4934da2e2c9646299286f179a7d480bfbdf7af.zip |
feat(colorcolchar): fix highlight_spec.lua
Problem was interpreting a '|' as next command, causing vim to interpret
set fillchars+=colorcol:| incorrectly
-rw-r--r-- | test/functional/ui/highlight_spec.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/ui/highlight_spec.lua b/test/functional/ui/highlight_spec.lua index c94a904bf1..b18b7b171a 100644 --- a/test/functional/ui/highlight_spec.lua +++ b/test/functional/ui/highlight_spec.lua @@ -856,14 +856,14 @@ describe('CursorLine and CursorLineNr highlights', function() | ]]) - command('set fillchars=colorc:|') + command('set fillchars=colorc:.') command('set colorcolumn=3') feed('i <esc>') screen:expect([[ - {1:{} {7:|} | + {1:{} {7:.} | "{2:a}{7:"} : {3:abc} {3:// 10;} | - {1:}} {7:|} | - {5: ^ }{7:|}{5: }| + {1:}} {7:.} | + {5: ^ }{7:.}{5: }| | ]]) end) |