diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-11-20 10:52:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-20 10:52:49 +0100 |
commit | deb18a050ef522791c48c7c8c549a2c4b2043be0 (patch) | |
tree | 1e82aea28a55ed55835e3a6b1596a7eb885c8e8f /test/functional/terminal/helpers.lua | |
parent | e53ae88e7ecb20f39f9f9c73cd9b39bc12a665ab (diff) | |
download | rneovim-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/helpers.lua')
-rw-r--r-- | test/functional/terminal/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/helpers.lua b/test/functional/terminal/helpers.lua index bd24b9785d..ae8d4704e4 100644 --- a/test/functional/terminal/helpers.lua +++ b/test/functional/terminal/helpers.lua @@ -52,7 +52,7 @@ local function screen_setup(extra_rows, command, cols) [7] = {foreground = 130}, [8] = {foreground = 15, background = 1}, -- error message [9] = {foreground = 4}, - [10] = {foreground = 2}, -- "Press ENTER" in embedded :terminal session. + [10] = {foreground = 121}, -- "Press ENTER" in embedded :terminal session. }) screen:attach({rgb=false}) |