aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/highlight_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-05-19 22:16:59 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-05-19 22:20:52 -0400
commit74f64601817a6cec92bf40a3b29809cb6e12afcc (patch)
treeb6adbb55ea0f7bf409c8d6f366338da380135a3d /test/functional/terminal/highlight_spec.lua
parent1fabc639078e1ddbc4ef6ddd7cb310a67fb1c0fb (diff)
parente5eea7fa06ae7057521755d1f638d34e049bd379 (diff)
downloadrneovim-74f64601817a6cec92bf40a3b29809cb6e12afcc.tar.gz
rneovim-74f64601817a6cec92bf40a3b29809cb6e12afcc.tar.bz2
rneovim-74f64601817a6cec92bf40a3b29809cb6e12afcc.zip
Merge #4633: support "special" highlight (undercurl)
Closes #2040 Closes #3370
Diffstat (limited to 'test/functional/terminal/highlight_spec.lua')
-rw-r--r--test/functional/terminal/highlight_spec.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/terminal/highlight_spec.lua b/test/functional/terminal/highlight_spec.lua
index 045f5aa42f..97875c5147 100644
--- a/test/functional/terminal/highlight_spec.lua
+++ b/test/functional/terminal/highlight_spec.lua
@@ -25,7 +25,7 @@ describe('terminal window highlighting', function()
[5] = {background = 11},
[6] = {foreground = 130},
[7] = {reverse = true},
- [8] = {background = 11}
+ [8] = {background = 11},
})
screen:attach(false)
execute('enew | call termopen(["'..nvim_dir..'/tty-test"]) | startinsert')
@@ -121,7 +121,7 @@ describe('terminal window highlighting with custom palette', function()
clear()
screen = Screen.new(50, 7)
screen:set_default_attr_ids({
- [1] = {foreground = 1193046}
+ [1] = {foreground = 1193046, special = Screen.colors.Black}
})
screen:set_default_attr_ignore({
[1] = {bold = true},
@@ -130,7 +130,7 @@ describe('terminal window highlighting with custom palette', function()
[5] = {background = 11},
[6] = {foreground = 130},
[7] = {reverse = true},
- [8] = {background = 11}
+ [8] = {background = 11},
})
screen:attach(true)
nvim('set_var', 'terminal_color_3', '#123456')