summaryrefslogtreecommitdiff
path: root/src/testdir/test_search.vim
AgeCommit message (Collapse)Author
2017-07-01patch 8.0.0692: CTRL-G with 'incsearch' and ? goes in the wrong directionBram Moolenaar
Problem: Using CTRL-G with 'incsearch' and ? goes in the wrong direction. (Ramel Eshed) Solution: Adjust search_start. (Christian Brabandt)
2017-06-29patch 8.0.0689: ~ character not escaped when extending search patternBram Moolenaar
Problem: The ~ character is not escaped when adding to the search pattern with CTRL-L. (Ramel Eshed) Solution: Escape the character. (Christian Brabandt)
2017-03-09patch 8.0.0440: not enough test coverage in Insert modeBram Moolenaar
Problem: Not enough test coverage in Insert mode. Solution: Add lots of tests. Add test_override(). (Christian Brabandt, closes #1521)
2017-03-08patch 8.0.0433: beeps when running testsBram Moolenaar
Problem: Quite a few beeps when running tests. Solution: Set 'belloff' for these tests. (Christian Brabandt)
2017-03-01patch 8.0.0398: illegal memory access with "t"Bram Moolenaar
Problem: Illegal memory access with "t". Solution: Use strncmp() instead of memcmp(). (Dominique Pelle, closes #1528)
2017-01-06patch 8.0.0147: searchpair() fails when 'magic' is offBram Moolenaar
Problem: searchpair() does not work when 'magic' is off. (Chris Paul) Solution: Add \m in the pattern. (Christian Brabandt, closes #1341)
2016-09-09patch 7.4.2356Bram Moolenaar
Problem: Reading past end of line when using previous substitute pattern. (Dominique Pelle) Solution: Don't set "pat" only set "searchstr".
2016-09-03patch 7.4.2320Bram Moolenaar
Problem: Redraw problem when using 'incsearch'. Solution: Save the current view when deleting characters. (Christian Brabandt) Fix that the '" mark is set in the wrong position. Don't change the search start when using BS.
2016-08-27patch 7.4.2268Bram Moolenaar
Problem: Using CTRL-N and CTRL-P for incsearch shadows completion keys. Solution: Use CTRL-T and CTRL-G instead.
2016-08-26patch 7.4.2259Bram Moolenaar
Problem: With 'incsearch' can only see the next match. Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian Brabandt)