aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/helpers.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-01-09 12:20:50 +0800
committerGitHub <noreply@github.com>2023-01-09 12:20:50 +0800
commitc19bd47c0a2e3cc77d7f5e41ed184edb41685bd3 (patch)
tree8585bcd7078ef916d11a23466ddf625bff18d8a6 /test/functional/terminal/helpers.lua
parenta174f4e53f0e111653e10d2df8aebe7c9fa0f73e (diff)
downloadrneovim-c19bd47c0a2e3cc77d7f5e41ed184edb41685bd3.tar.gz
rneovim-c19bd47c0a2e3cc77d7f5e41ed184edb41685bd3.tar.bz2
rneovim-c19bd47c0a2e3cc77d7f5e41ed184edb41685bd3.zip
test(tui_spec): improve cursor_address test (#21700)
Diffstat (limited to 'test/functional/terminal/helpers.lua')
-rw-r--r--test/functional/terminal/helpers.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/terminal/helpers.lua b/test/functional/terminal/helpers.lua
index 841c92387f..7247361649 100644
--- a/test/functional/terminal/helpers.lua
+++ b/test/functional/terminal/helpers.lua
@@ -74,7 +74,10 @@ local function screen_setup(extra_rows, command, cols, opts)
[9] = {foreground = 4},
[10] = {foreground = 121}, -- "Press ENTER" in embedded :terminal session.
[11] = {foreground = tonumber('0x00000b')},
- [12] = {reverse = true, foreground = tonumber('0x000079')},
+ [12] = {underline = true},
+ [13] = {underline = true, reverse = true},
+ [14] = {underline = true, reverse = true, bold = true},
+ [15] = {underline = true, foreground = 12},
})
screen:attach(opts or {rgb=false})