Mercurial > vim
diff src/testdir/gen_opt_test.vim @ 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 | 0208534b8a84 |
children | ed00f0fbdaef |
line wrap: on
line diff
--- a/src/testdir/gen_opt_test.vim +++ b/src/testdir/gen_opt_test.vim @@ -63,7 +63,7 @@ let test_values = { \ \ 'ambiwidth': [['', 'single'], ['xxx']], \ 'background': [['', 'light', 'dark'], ['xxx']], - \ 'backspace': [[0, 2, '', 'eol', 'eol,start'], ['xxx']], + \ 'backspace': [[0, 2, 3, '', 'eol', 'eol,start', 'indent,eol,nostop'], ['4', 'xxx']], \ 'backupcopy': [['yes', 'auto'], ['', 'xxx', 'yes,no']], \ 'backupext': [['xxx'], ['']], \ 'belloff': [['', 'all', 'copy,error'], ['xxx']],