neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 52481eecf0dfc596a4d8df389c901f46cd3b6661
parent 7579af3c514c44581fe33b5c03660cdfda7d658e
Author: Gregory Anders <greg@gpanders.com>
Date:   Wed,  4 Dec 2024 10:17:19 -0600

docs: mention new terminal defaults (#31449)


Diffstat:
Mruntime/doc/news.txt | 2++
Mruntime/doc/terminal.txt | 3+++
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git 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 @@ -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