aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Rahm <rahm@google.com>2022-08-24 11:41:47 -0600
committerJosh Rahm <joshuarahm@gmail.com>2022-08-30 23:18:13 -0600
commit9a4934da2e2c9646299286f179a7d480bfbdf7af (patch)
tree8a4f12018e4d0a92df222f5f4e6f4d939f487f8a
parent877894e98c2abb4a482661c2243ad4b80a5cc242 (diff)
downloadrneovim-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.lua8
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)