diff options
author | Josh Rahm <rahm@google.com> | 2022-08-24 11:41:47 -0600 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2022-08-27 20:53:30 -0600 |
commit | f8bddb98545c09a5b861e9d4e0f4edd1e920a4b3 (patch) | |
tree | 00dd23347622dca6c1ba4d845d033c4f86a0e5c4 | |
parent | 2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade (diff) | |
download | rneovim-f8bddb98545c09a5b861e9d4e0f4edd1e920a4b3.tar.gz rneovim-f8bddb98545c09a5b861e9d4e0f4edd1e920a4b3.tar.bz2 rneovim-f8bddb98545c09a5b861e9d4e0f4edd1e920a4b3.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 87c632c6e0..1cfbd09852 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) |