diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-02-05 20:59:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-05 20:59:07 +0100 |
commit | c9b7f0c2498ae900fc3de8fc0d6b2c1f078ee211 (patch) | |
tree | 206993aff9892e2beee704c84448221accebdb15 /test/functional/terminal/tui_spec.lua | |
parent | 36378c33c6ca6b5c906b8ab326db508feb32c859 (diff) | |
parent | baf93d96063ceab109ecf16046a51e861a9c2c26 (diff) | |
download | rneovim-c9b7f0c2498ae900fc3de8fc0d6b2c1f078ee211.tar.gz rneovim-c9b7f0c2498ae900fc3de8fc0d6b2c1f078ee211.tar.bz2 rneovim-c9b7f0c2498ae900fc3de8fc0d6b2c1f078ee211.zip |
Merge pull request #9581 from bfredl/alwaysrgb
UI: always use contrete colors for default_colors_set
Diffstat (limited to 'test/functional/terminal/tui_spec.lua')
-rw-r--r-- | test/functional/terminal/tui_spec.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/terminal/tui_spec.lua b/test/functional/terminal/tui_spec.lua index cc6ce30038..f1ad2bdb95 100644 --- a/test/functional/terminal/tui_spec.lua +++ b/test/functional/terminal/tui_spec.lua @@ -256,13 +256,13 @@ describe('TUI', function() end) it('shows up in nvim_list_uis', function() - feed_data(':echo map(nvim_list_uis(), {k,v -> sort(items(v))})\013') + feed_data(':echo map(nvim_list_uis(), {k,v -> sort(items(filter(v, {k,v -> k[:3] !=# "ext_" })))})\013') screen:expect([=[ - [[['ext_cmdline', v:false], ['ext_hlstate', v:fals| - e], ['ext_linegrid', v:true], ['ext_multigrid', v:| - false], ['ext_popupmenu', v:false], ['ext_tabline'| - , v:false], ['ext_wildmenu', v:false], ['height', | - 6], ['rgb', v:false], ['width', 50]]] | + | + {4:~ }| + {5: }| + [[['height', 6], ['rgb', v:false], ['width', 50]]]| + | {10:Press ENTER or type command to continue}{1: } | {3:-- TERMINAL --} | ]=]) |