aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorGregory Anders <greg@gpanders.com>2023-11-07 11:31:21 -0600
committerGregory Anders <greg@gpanders.com>2023-11-13 19:04:47 -0600
commit8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe (patch)
tree5872a66135c1250a32da15b981bb36118e58d347 /runtime/doc
parentab102f188e86bdbfce1d4de2ef633092a906e8fe (diff)
downloadrneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.tar.gz
rneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.tar.bz2
rneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.zip
docs: deprecate the "term_background" UI field
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/deprecated.txt2
-rw-r--r--runtime/doc/news.txt4
-rw-r--r--runtime/doc/ui.txt1
3 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/deprecated.txt b/runtime/doc/deprecated.txt
index 7f7c498880..0a07f06c75 100644
--- a/runtime/doc/deprecated.txt
+++ b/runtime/doc/deprecated.txt
@@ -202,6 +202,8 @@ UI EXTENSIONS
- `["wildmenu_show", items]`
- `["wildmenu_select", selected]`
- `["wildmenu_hide"]`
+- *term_background* Unused. The terminal background color is now detected
+ by the Nvim core directly instead of the TUI.
VARIABLES
- *b:terminal_job_pid* PID of the top-level process in a |:terminal|.
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt
index 9d531b8efc..ee48bddc4d 100644
--- a/runtime/doc/news.txt
+++ b/runtime/doc/news.txt
@@ -340,4 +340,8 @@ release.
• vim.treesitter.languagetree functions:
- |LanguageTree:for_each_child()| Use |LanguageTree:children()| (non-recursive) instead.
+• The "term_background" UI option |ui-ext-options| is deprecated and no longer
+ populated. Background color detection is now performed in Lua by the Nvim
+ core, not the TUI.
+
vim:tw=78:ts=8:sw=2:et:ft=help:norl:
diff --git a/runtime/doc/ui.txt b/runtime/doc/ui.txt
index 9cf0e59854..ab99b0446f 100644
--- a/runtime/doc/ui.txt
+++ b/runtime/doc/ui.txt
@@ -52,7 +52,6 @@ with these (optional) keys:
- `ext_termcolors` Use external default colors.
- `term_name` Sets the name of the terminal 'term'.
- `term_colors` Sets the number of supported colors 't_Co'.
-- `term_background` Sets the default value of 'background'.
- `stdin_fd` Read buffer 1 from this fd as if it were stdin |--|.
Only from |--embed| UI on startup. |ui-startup-stdin|
- `stdin_tty` Tells if `stdin` is a `tty` or not.