aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/tui_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-11-20 10:52:49 +0100
committerGitHub <noreply@github.com>2018-11-20 10:52:49 +0100
commitdeb18a050ef522791c48c7c8c549a2c4b2043be0 (patch)
tree1e82aea28a55ed55835e3a6b1596a7eb885c8e8f /test/functional/terminal/tui_spec.lua
parente53ae88e7ecb20f39f9f9c73cd9b39bc12a665ab (diff)
downloadrneovim-deb18a050ef522791c48c7c8c549a2c4b2043be0.tar.gz
rneovim-deb18a050ef522791c48c7c8c549a2c4b2043be0.tar.bz2
rneovim-deb18a050ef522791c48c7c8c549a2c4b2043be0.zip
defaults: background=dark #2894 (#9205)
By historical accident, Nvim defaults to background=light. So on a dark background, `:colorscheme default` looks completely wrong. The "smart" logic that Vim uses is confusing for anyone who uses Vim on multiple platforms, so rather than mimic that, pick the (hopefully) most common default. - Since Neovim is dark-powered, we assume most users have dark backgrounds. - Most of the GUIs tend to have a dark background by default. ref #6289
Diffstat (limited to 'test/functional/terminal/tui_spec.lua')
-rw-r--r--test/functional/terminal/tui_spec.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/terminal/tui_spec.lua b/test/functional/terminal/tui_spec.lua
index 365bd2a0be..a47fed0442 100644
--- a/test/functional/terminal/tui_spec.lua
+++ b/test/functional/terminal/tui_spec.lua
@@ -134,15 +134,17 @@ describe('tui', function()
feed_data('\022\007') -- ctrl+g
feed_data('\022\022') -- ctrl+v
feed_data('\022\013') -- ctrl+m
+ local attrs = screen:get_default_attr_ids()
+ attrs[11] = {foreground = 81}
screen:expect([[
- {9:^G^V^M}{1: } |
+ {11:^G^V^M}{1: } |
{4:~ }|
{4:~ }|
{4:~ }|
{5:[No Name] [+] }|
{3:-- INSERT --} |
{3:-- TERMINAL --} |
- ]])
+ ]], attrs)
end)
it('automatically sends <Paste> for bracketed paste sequences', function()