From: Emilien Breton Date: Wed, 6 Aug 2025 10:48:06 +0000 (+0200) Subject: runtime(doc): fix mismatch between 'backspace' and |i_backspacing| X-Git-Tag: v9.1.1594~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3769100a8e59aaaf48739e1588445dd6ee7e29e7;p=thirdparty%2Fvim.git runtime(doc): fix mismatch between 'backspace' and |i_backspacing| closes: #17867 Signed-off-by: Emilien Breton Signed-off-by: Christian Brabandt --- diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index c465e7d060..a56ffc0d38 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -284,9 +284,11 @@ The effect of the , CTRL-W, and CTRL-U depend on the 'backspace' option item action ~ indent allow backspacing over autoindent -eol allow backspacing over end-of-line (join lines) -start allow backspacing over the start position of insert; CTRL-W and - CTRL-U stop once at the start position +eol allow backspacing over line breaks (join lines) +start allow backspacing over the start of insert; CTRL-W and CTRL-U stop + once at the start of insert. +nostop like start, except CTRL-W and CTRL-U do not stop at the start of + insert. When 'backspace' is empty, Vi compatible backspacing is used. You cannot backspace over autoindent, before column 1 or before where insert started.