comparison runtime/doc/options.txt @ 20069:9a67d41708d2 v8.2.0590

patch 8.2.0590: no 'backspace' value allows ignoring the insertion point Commit: https://github.com/vim/vim/commit/aa0489e12d227d24752cf16e4e97058ac32edcc1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 17 19:41:21 2020 +0200 patch 8.2.0590: no 'backspace' value allows ignoring the insertion point Problem: No 'backspace' value allows ignoring the insertion point. Solution: Add the "nostop" and 3 values. (Christian Brabandt, closes https://github.com/vim/vim/issues/5940)
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Apr 2020 19:45:05 +0200
parents 1908e92b02fd
children d821c03b890c
comparison
equal deleted inserted replaced
20068:b644ea832304 20069:9a67d41708d2
913 value effect ~ 913 value effect ~
914 indent allow backspacing over autoindent 914 indent allow backspacing over autoindent
915 eol allow backspacing over line breaks (join lines) 915 eol allow backspacing over line breaks (join lines)
916 start allow backspacing over the start of insert; CTRL-W and CTRL-U 916 start allow backspacing over the start of insert; CTRL-W and CTRL-U
917 stop once at the start of insert. 917 stop once at the start of insert.
918 nostop like start, except CTRL-W and CTRL-U do not stop at the start of
919 insert.
918 920
919 When the value is empty, Vi compatible backspacing is used. 921 When the value is empty, Vi compatible backspacing is used.
920 922
921 For backwards compatibility with version 5.4 and earlier: 923 For backwards compatibility with version 5.4 and earlier:
922 value effect ~ 924 value effect ~
923 0 same as ":set backspace=" (Vi compatible) 925 0 same as ":set backspace=" (Vi compatible)
924 1 same as ":set backspace=indent,eol" 926 1 same as ":set backspace=indent,eol"
925 2 same as ":set backspace=indent,eol,start" 927 2 same as ":set backspace=indent,eol,start"
928 3 same as ":set backspace=indent,eol,nostop"
926 929
927 See |:fixdel| if your <BS> or <Del> key does not do what you want. 930 See |:fixdel| if your <BS> or <Del> key does not do what you want.
928 NOTE: This option is set to "" when 'compatible' is set. 931 NOTE: This option is set to "" when 'compatible' is set.
929 932
930 *'backup'* *'bk'* *'nobackup'* *'nobk'* 933 *'backup'* *'bk'* *'nobackup'* *'nobk'*