diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-05 00:46:06 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-05 09:47:38 -0500 |
commit | 25cb2c722e74ea62c289ecba8a6e98db5ee67493 (patch) | |
tree | 1985ab29cd263db3e14ace22ba3644c38f837190 /runtime | |
parent | 5b897acfc1e9bf3c44f7e255743e2b9c8b6d1142 (diff) | |
download | rneovim-25cb2c722e74ea62c289ecba8a6e98db5ee67493.tar.gz rneovim-25cb2c722e74ea62c289ecba8a6e98db5ee67493.tar.bz2 rneovim-25cb2c722e74ea62c289ecba8a6e98db5ee67493.zip |
vim-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 vim/vim#5940)
https://github.com/vim/vim/commit/aa0489e12d227d24752cf16e4e97058ac32edcc1
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) |