diff options
author | Gregory Anders <greg@gpanders.com> | 2024-12-04 10:17:19 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-04 10:17:19 -0600 |
commit | 52481eecf0dfc596a4d8df389c901f46cd3b6661 (patch) | |
tree | 72457e9065994243629c3de1b8c3ddc918052487 | |
parent | 7579af3c514c44581fe33b5c03660cdfda7d658e (diff) | |
download | rneovim-52481eecf0dfc596a4d8df389c901f46cd3b6661.tar.gz rneovim-52481eecf0dfc596a4d8df389c901f46cd3b6661.tar.bz2 rneovim-52481eecf0dfc596a4d8df389c901f46cd3b6661.zip |
docs: mention new terminal defaults (#31449)
-rw-r--r-- | runtime/doc/news.txt | 2 | ||||
-rw-r--r-- | runtime/doc/terminal.txt | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index c309d85297..58fe2e02e8 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -58,6 +58,8 @@ DEFAULTS • |]d-default| and |[d-default| accept a count. • |[D-default| and |]D-default| jump to the first and last diagnostic in the current buffer, respectively. +• 'number', 'relativenumber', and 'signcolumn' are disabled in |terminal| + buffers. See |terminal-config| for an example of changing these defaults. DIAGNOSTICS diff --git a/runtime/doc/terminal.txt b/runtime/doc/terminal.txt index ed9659d6e7..27586c38a7 100644 --- a/runtime/doc/terminal.txt +++ b/runtime/doc/terminal.txt @@ -108,6 +108,9 @@ global configuration. - 'list' is disabled - 'wrap' is disabled +- 'number' is disabled +- 'relativenumber' is disabled +- 'signcolumn' is set to "no" You can change the defaults with a TermOpen autocommand: >vim au TermOpen * setlocal list |