diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2024-12-02 08:06:57 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-02 00:06:57 +0000 |
| commit | fb689d7ebd680c4921f4ec617fe5e01cd09ba96c (patch) | |
| tree | 1bfe504a22dd3d8773b1a552c12b5dec91066657 /test/old/testdir/test_ins_complete.vim | |
| parent | feb62d5429680278c1353c565db6bb3ecb3b7c24 (diff) | |
| download | rneovim-fb689d7ebd680c4921f4ec617fe5e01cd09ba96c.tar.gz rneovim-fb689d7ebd680c4921f4ec617fe5e01cd09ba96c.tar.bz2 rneovim-fb689d7ebd680c4921f4ec617fe5e01cd09ba96c.zip | |
vim-patch:9.1.0899: default for 'backspace' can be set in C code (#31416)
Problem: default for 'backspace' can be set in C code
Solution: promote the default for 'backspace' from defaults.vim to the C
code (Luca Saccarola)
closes: vim/vim#16143
https://github.com/vim/vim/commit/959ef61430bdd8fb982b38bd3347d90251255cfc
N/A patches:
vim-patch:9.1.0895: default history value is too small
vim-patch:075aeea: runtime(doc): document changed default value for 'history'
Co-authored-by: Luca Saccarola <github.e41mv@aleeas.com>
Diffstat (limited to 'test/old/testdir/test_ins_complete.vim')
| -rw-r--r-- | test/old/testdir/test_ins_complete.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_ins_complete.vim b/test/old/testdir/test_ins_complete.vim index c02aa1db62..6cc894c28c 100644 --- a/test/old/testdir/test_ins_complete.vim +++ b/test/old/testdir/test_ins_complete.vim @@ -1509,7 +1509,7 @@ func Test_complete_item_refresh_always() set completefunc=Tcomplete exe "normal! iup\<C-X>\<C-U>\<BS>\<BS>\<BS>\<BS>\<BS>" call assert_equal('up', getline(1)) - call assert_equal(2, g:CallCount) + call assert_equal(6, g:CallCount) set completeopt& set completefunc& bw! |