diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-02 22:46:54 -0400 |
|---|---|---|
| committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-02 23:13:28 -0400 |
| commit | 2000e1621d5e529d660dc0a7534f0884b6179c8b (patch) | |
| tree | 9b08b81e8e79d9119b34b241c44ad55b76373a08 /src/nvim/testdir | |
| parent | 25513049b3c3f9276dfa560ef0920f3ed6cc5f2f (diff) | |
| download | rneovim-2000e1621d5e529d660dc0a7534f0884b6179c8b.tar.gz rneovim-2000e1621d5e529d660dc0a7534f0884b6179c8b.tar.bz2 rneovim-2000e1621d5e529d660dc0a7534f0884b6179c8b.zip | |
vim-patch:8.2.1787: crash with 'incsearch' and very long line
Problem: Crash with 'incsearch' and very long line.
Solution: Check whether regprog becomes NULL. (closes vim/vim#7063)
https://github.com/vim/vim/commit/795aaa1e84d76a6fe066694de9876b8a21cbe40c
N/A patches for version.c:
vim-patch:8.2.1784: commits are not scanned for security problems
Problem: commits are not scanned for security problems
Solution: Enable Github code scanning. (Christian Brabandt, closes vim/vim#7057)
https://github.com/vim/vim/commit/fa79be6b10e1d34fd697a56e85f6c0ce101f3d62
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_search.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_search.vim b/src/nvim/testdir/test_search.vim index 211fc73562..5db23c22a8 100644 --- a/src/nvim/testdir/test_search.vim +++ b/src/nvim/testdir/test_search.vim @@ -981,6 +981,21 @@ func Test_incsearch_substitute() call Incsearch_cleanup() endfunc +func Test_incsearch_substitute_long_line() + throw 'skipped: Nvim does not support test_override()' + new + call test_override("char_avail", 1) + set incsearch + + call repeat('x', 100000)->setline(1) + call feedkeys(':s/\%c', 'xt') + redraw + call feedkeys("\<Esc>", 'xt') + + call Incsearch_cleanup() + bwipe! +endfunc + func Test_search_undefined_behaviour() if !has("terminal") return |