diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-02-03 22:17:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 22:17:28 +0100 |
commit | da88278f2786d85565e6e2a163709266e4c46232 (patch) | |
tree | ac64b16602015def0982ea9a5da9e34bcfb04576 /test/functional/ui/popupmenu_spec.lua | |
parent | 08155e2b53cdb0e2af72f347d9bb464ea0edab5e (diff) | |
parent | 81ac8e9015142fb539ad888651130f6a0ab0b27a (diff) | |
download | rneovim-da88278f2786d85565e6e2a163709266e4c46232.tar.gz rneovim-da88278f2786d85565e6e2a163709266e4c46232.tar.bz2 rneovim-da88278f2786d85565e6e2a163709266e4c46232.zip |
Merge pull request #9579 from bfredl/pum_fix
popupmenu: fix alignment of kind and extra after #9530
Diffstat (limited to 'test/functional/ui/popupmenu_spec.lua')
-rw-r--r-- | test/functional/ui/popupmenu_spec.lua | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/test/functional/ui/popupmenu_spec.lua b/test/functional/ui/popupmenu_spec.lua index 9e6a61f4d0..6a10f60ad8 100644 --- a/test/functional/ui/popupmenu_spec.lua +++ b/test/functional/ui/popupmenu_spec.lua @@ -1178,5 +1178,56 @@ describe('builtin popupmenu', function() ]]) end) + it('works with kind, menu and abbr attributes', function() + screen:try_resize(40,8) + feed('ixx ') + funcs.complete(4, {{word='wordey', kind= 'x', menu='extrainfo'}, 'thing', {word='secret', abbr='sneaky', menu='bar'}}) + screen:expect([[ + xx wordey^ | + {1:~ }{s: wordey x extrainfo }{1: }| + {1:~ }{n: thing }{1: }| + {1:~ }{n: sneaky bar }{1: }| + {1:~ }| + {1:~ }| + {1:~ }| + {2:-- INSERT --} | + ]]) + + feed('<c-p>') + screen:expect([[ + xx ^ | + {1:~ }{n: wordey x extrainfo }{1: }| + {1:~ }{n: thing }{1: }| + {1:~ }{n: sneaky bar }{1: }| + {1:~ }| + {1:~ }| + {1:~ }| + {2:-- INSERT --} | + ]]) + + feed('<c-p>') + screen:expect([[ + xx secret^ | + {1:~ }{n: wordey x extrainfo }{1: }| + {1:~ }{n: thing }{1: }| + {1:~ }{s: sneaky bar }{1: }| + {1:~ }| + {1:~ }| + {1:~ }| + {2:-- INSERT --} | + ]]) + + feed('<esc>') + screen:expect([[ + xx secre^t | + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + {1:~ }| + | + ]]) + end) end) |