diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-25 02:17:15 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-26 03:41:24 +0200 |
commit | 00843902d3472ac4e74106fc06fa60e599914496 (patch) | |
tree | 6d227b71062232086a218af7086d2b31552dc69c /test/functional/viml/completion_spec.lua | |
parent | 88023d51238698dd625c26300142d3dbe5770b73 (diff) | |
download | rneovim-00843902d3472ac4e74106fc06fa60e599914496.tar.gz rneovim-00843902d3472ac4e74106fc06fa60e599914496.tar.bz2 rneovim-00843902d3472ac4e74106fc06fa60e599914496.zip |
api/ui: externalize tabline
- Work with a bool[] array parallel to the UIWidget enum.
- Rename some functions.
- Documentation.
Diffstat (limited to 'test/functional/viml/completion_spec.lua')
-rw-r--r-- | test/functional/viml/completion_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/viml/completion_spec.lua b/test/functional/viml/completion_spec.lua index b35e8d4f94..5f5e9437dc 100644 --- a/test/functional/viml/completion_spec.lua +++ b/test/functional/viml/completion_spec.lua @@ -868,13 +868,13 @@ describe('completion', function() end) end) -describe('External completion popupmenu', function() +describe('ui/externalized/popupmenu', function() local screen local items, selected, anchor before_each(function() clear() screen = Screen.new(60, 8) - screen:attach({rgb=true, popupmenu_external=true}) + screen:attach({rgb=true, ui_ext={'popupmenu'}}) screen:set_default_attr_ids({ [1] = {bold=true, foreground=Screen.colors.Blue}, [2] = {bold = true}, |