diff options
author | Matthieu Coudron <teto@users.noreply.github.com> | 2021-01-06 21:17:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 21:17:44 +0100 |
commit | fe1ebea33914df137fdded98872fe38fa8470384 (patch) | |
tree | 174c220158f0cfd91c638a0a35120510001006d7 /runtime | |
parent | 2ea3127697692b0b2c480d585ef6529e90a72b0e (diff) | |
parent | 25cb2c722e74ea62c289ecba8a6e98db5ee67493 (diff) | |
download | rneovim-fe1ebea33914df137fdded98872fe38fa8470384.tar.gz rneovim-fe1ebea33914df137fdded98872fe38fa8470384.tar.bz2 rneovim-fe1ebea33914df137fdded98872fe38fa8470384.zip |
Merge pull request #13689 from janlazo/vim-8.2.0050
vim-patch:8.1.{1731,1764,2111,2126},8.2.{50,590}
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 2e9f1847d2..2a757bbed9 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -734,6 +734,8 @@ A jump table for the options with a short description can be found at |Q_op|. 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 the value is empty, Vi compatible backspacing is used. @@ -742,6 +744,7 @@ A jump table for the options with a short description can be found at |Q_op|. 0 same as ":set backspace=" (Vi compatible) 1 same as ":set backspace=indent,eol" 2 same as ":set backspace=indent,eol,start" + 3 same as ":set backspace=indent,eol,nostop" *'backup'* *'bk'* *'nobackup'* *'nobk'* 'backup' 'bk' boolean (default off) |