From cd7b910e8144dcc6092c7b1e1bfdc3193fdd643b Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Wed, 8 Apr 2015 13:34:27 +0200 Subject: Add new highlight groups TermCursor/TermCursorNC These highlight groups replace the old mechanism of setting: - {g,b}:terminal_focused_cursor_highlight - {g,b}:terminal_unfocused_cursor_highlight --- test/functional/terminal/helpers.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/functional/terminal/helpers.lua') 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) -- cgit