diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-28 23:46:50 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-28 23:47:16 -0400 |
commit | bddc4dc0ed56d8714be340c5f95bea12ceb00255 (patch) | |
tree | e72c111a04ef19c5a076144bb17d275018cdf102 /src | |
parent | 805d6e450a9e658ff7e1d254210983f5667558f7 (diff) | |
download | rneovim-bddc4dc0ed56d8714be340c5f95bea12ceb00255.tar.gz rneovim-bddc4dc0ed56d8714be340c5f95bea12ceb00255.tar.bz2 rneovim-bddc4dc0ed56d8714be340c5f95bea12ceb00255.zip |
vim-patch:8.0.1238: incremental search only shows one match
Problem: Incremental search only shows one match.
Solution: When 'incsearch' and and 'hlsearch' are both set highlight all
matches. (haya14busa, closes vim/vim#2198)
https://github.com/vim/vim/commit/2e51d9a0972080b087d566608472928d5b7b35d7
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_search.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_search.vim b/src/nvim/testdir/test_search.vim index 5e5ec96fd1..8e284ba042 100644 --- a/src/nvim/testdir/test_search.vim +++ b/src/nvim/testdir/test_search.vim @@ -1,5 +1,7 @@ " Test for the search command +source shared.vim + func Test_search_cmdline() " See test/functional/legacy/search_spec.lua throw 'skipped: Nvim does not support test_override()' |