diff options
author | Josh Rahm <rahm@google.com> | 2021-09-22 11:03:34 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2022-01-11 14:12:30 -0700 |
commit | 74895adbe461e56b3472408a5acc08ee19833b85 (patch) | |
tree | 604d848bc6c12e53af34a4168b0b15ffa90034dc /test | |
parent | aba03932eeade5af887355d6fadb58ad0dda6b89 (diff) | |
download | rneovim-74895adbe461e56b3472408a5acc08ee19833b85.tar.gz rneovim-74895adbe461e56b3472408a5acc08ee19833b85.tar.bz2 rneovim-74895adbe461e56b3472408a5acc08ee19833b85.zip |
Move colorcolumn character option to fillchars.
listchars is not the right place for it.
Diffstat (limited to 'test')
-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 0983d0d4ad..255180bba8 100644 --- a/test/functional/ui/highlight_spec.lua +++ b/test/functional/ui/highlight_spec.lua @@ -868,13 +868,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) |