diff options
| author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-11-13 19:21:07 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-13 19:21:07 -0600 |
| commit | 582d7f47905d82f315dc852a9d2937cd5b655e55 (patch) | |
| tree | 2a8b82a0bb4e7079dc6c5be33f00c360e9547c6b /runtime/doc | |
| parent | 28f4f3c48498086307ed825d1761edb5789ca0e8 (diff) | |
| parent | 22eb2ba18336df6cd70a88f666818ee5d8ba92d2 (diff) | |
| download | rneovim-582d7f47905d82f315dc852a9d2937cd5b655e55.tar.gz rneovim-582d7f47905d82f315dc852a9d2937cd5b655e55.tar.bz2 rneovim-582d7f47905d82f315dc852a9d2937cd5b655e55.zip | |
Merge pull request #25918 from gpanders/background-color
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/deprecated.txt | 2 | ||||
| -rw-r--r-- | runtime/doc/news.txt | 4 | ||||
| -rw-r--r-- | runtime/doc/ui.txt | 1 |
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. |