diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-12-26 14:04:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-26 14:04:46 +0800 |
commit | 94ce25065bb709794904b8ee96c1144006520750 (patch) | |
tree | a5a10ae8c34bd255af3c81757fd40b07be3c99c4 /test/functional/ui/cmdline_spec.lua | |
parent | 522b15e2a4d0a0f5a9e5958efa4ffcbb3606f131 (diff) | |
download | rneovim-94ce25065bb709794904b8ee96c1144006520750.tar.gz rneovim-94ce25065bb709794904b8ee96c1144006520750.tar.bz2 rneovim-94ce25065bb709794904b8ee96c1144006520750.zip |
fix(showcmd): assert failure with cmdheight=0 (#21536)
Diffstat (limited to 'test/functional/ui/cmdline_spec.lua')
-rw-r--r-- | test/functional/ui/cmdline_spec.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/functional/ui/cmdline_spec.lua b/test/functional/ui/cmdline_spec.lua index c73c2d9f8a..1bdd55d66b 100644 --- a/test/functional/ui/cmdline_spec.lua +++ b/test/functional/ui/cmdline_spec.lua @@ -1351,4 +1351,17 @@ describe('cmdheight=0', function() {1:~ }│{1:~ }| ]]) end) + + it('no assert failure with showcmd', function() + command('set showcmd cmdheight=0') + feed('d') + screen:expect([[ + ^ | + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + ]]) + assert_alive() + end) end) |