diff options
author | Josh Rahm <rahm@google.com> | 2021-09-22 11:03:34 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2021-10-05 02:22:00 -0600 |
commit | 7090d668776f9d45e8d66ede9690122625bc88d0 (patch) | |
tree | 37082efafc8e485b4256086b0cfd546819d66493 /test/functional/ui | |
parent | 2bd8a5e4b77367c29f3c9ed2091023dc69f35239 (diff) | |
download | rneovim-7090d668776f9d45e8d66ede9690122625bc88d0.tar.gz rneovim-7090d668776f9d45e8d66ede9690122625bc88d0.tar.bz2 rneovim-7090d668776f9d45e8d66ede9690122625bc88d0.zip |
Move colorcolumn character option to fillchars.
listchars is not the right place for it.
Diffstat (limited to 'test/functional/ui')
-rw-r--r-- | test/functional/ui/highlight_spec.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/functional/ui/highlight_spec.lua b/test/functional/ui/highlight_spec.lua index c00d30fe32..95de31fb6d 100644 --- a/test/functional/ui/highlight_spec.lua +++ b/test/functional/ui/highlight_spec.lua @@ -850,13 +850,14 @@ describe('CursorLine highlight', function() | ]]) + command('set fillchars+=colorcol:│') 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) |