diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2015-04-09 11:14:22 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2015-04-09 11:14:22 -0400 |
commit | 4a7364c807a5ff03e7e4fd94549bc64a00f6ea99 (patch) | |
tree | 0a40a1766194763d035e7afdfd74a172349e0d08 /test/functional/terminal/helpers.lua | |
parent | bae1da3f74ec91b8a79c764aa0277d96c932b2aa (diff) | |
parent | cd7b910e8144dcc6092c7b1e1bfdc3193fdd643b (diff) | |
download | rneovim-4a7364c807a5ff03e7e4fd94549bc64a00f6ea99.tar.gz rneovim-4a7364c807a5ff03e7e4fd94549bc64a00f6ea99.tar.bz2 rneovim-4a7364c807a5ff03e7e4fd94549bc64a00f6ea99.zip |
Merge pull request #2374 from mhinz/hl-group-termcursor
[RDY] Add new highlight groups TermCursor and TermCursorNC
Diffstat (limited to 'test/functional/terminal/helpers.lua')
-rw-r--r-- | test/functional/terminal/helpers.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/terminal/helpers.lua b/test/functional/terminal/helpers.lua index 631dc579d3..1bc6057a0b 100644 --- a/test/functional/terminal/helpers.lua +++ b/test/functional/terminal/helpers.lua @@ -34,6 +34,8 @@ local function disable_mouse() feed_termcode('[?1002l') end local function screen_setup(extra_height) + nvim('command', 'highlight TermCursor cterm=reverse') + nvim('command', 'highlight TermCursorNC ctermbg=11') nvim('set_var', 'terminal_scrollback_buffer_size', 10) if not extra_height then extra_height = 0 end local screen = Screen.new(50, 7 + extra_height) |