diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-25 10:14:29 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-26 03:41:24 +0200 |
commit | c8e1af93de90b2e23579f726fd4aa6a65f9387b6 (patch) | |
tree | 67619230c63d75051acb399d58eeb3c6dc496dbf /test/functional/viml/completion_spec.lua | |
parent | 00843902d3472ac4e74106fc06fa60e599914496 (diff) | |
download | rneovim-c8e1af93de90b2e23579f726fd4aa6a65f9387b6.tar.gz rneovim-c8e1af93de90b2e23579f726fd4aa6a65f9387b6.tar.bz2 rneovim-c8e1af93de90b2e23579f726fd4aa6a65f9387b6.zip |
api: nvim_ui_attach(): Flatten ext_* options.
Diffstat (limited to 'test/functional/viml/completion_spec.lua')
-rw-r--r-- | test/functional/viml/completion_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/viml/completion_spec.lua b/test/functional/viml/completion_spec.lua index 5f5e9437dc..0e5278345c 100644 --- a/test/functional/viml/completion_spec.lua +++ b/test/functional/viml/completion_spec.lua @@ -874,7 +874,7 @@ describe('ui/externalized/popupmenu', function() before_each(function() clear() screen = Screen.new(60, 8) - screen:attach({rgb=true, ui_ext={'popupmenu'}}) + screen:attach({rgb=true, ext_popupmenu=true}) screen:set_default_attr_ids({ [1] = {bold=true, foreground=Screen.colors.Blue}, [2] = {bold = true}, |