diff options
author | Ibby <33922797+SleepySwords@users.noreply.github.com> | 2023-03-26 00:10:28 +1100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-05-22 13:49:42 +0200 |
commit | 8eaf3c4f8c2ee4dc5a6e12bb809058ad263dbb65 (patch) | |
tree | 31f1f982dab52f8235db677ee43451a996067f32 /test/functional | |
parent | 0c7fa3bdcc3761cc851ea0ac37bf692b990044cc (diff) | |
download | rneovim-8eaf3c4f8c2ee4dc5a6e12bb809058ad263dbb65.tar.gz rneovim-8eaf3c4f8c2ee4dc5a6e12bb809058ad263dbb65.tar.bz2 rneovim-8eaf3c4f8c2ee4dc5a6e12bb809058ad263dbb65.zip |
vim-patch:9.0.0143: cursor positioned after virtual text in empty line
Problem: Cursor positioned after virtual text in empty line.
Solution: Keep cursor in the first column. (closes vim/vim#10786)
https://github.com/vim/vim/commit/afd2aa79eda3fe69f2e7c87d0b9b4bca874f386a
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/ui/decorations_spec.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/functional/ui/decorations_spec.lua b/test/functional/ui/decorations_spec.lua index 6e4b19c856..a2b0138da3 100644 --- a/test/functional/ui/decorations_spec.lua +++ b/test/functional/ui/decorations_spec.lua @@ -1368,6 +1368,28 @@ end]] {24:-- INSERT --} | ]]} end) + + it('has correct cursor position with virtual text on an empty line', function() + meths.buf_set_extmark(0, ns, 0, 0, + { virt_text = { { 'virtual text', 'Special' } }, virt_text_pos = 'inline' }) + screen:expect { grid = [[ + {28:^virtual text} | + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + | + ]]} + end) end) describe('decorations: virtual lines', function() |