summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_substitute.vim
AgeCommit message (Collapse)Author
2020-03-30patch 8.2.0482: channel and sandbox code not sufficiently testedv8.2.0482Bram Moolenaar
Problem: Channel and sandbox code not sufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5855)
2020-03-25patch 8.2.0448: various functions not properly testedv8.2.0448Bram Moolenaar
Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
2020-02-11patch 8.2.0243: insufficient code coverage for ex_docmd.c functionsv8.2.0243Bram Moolenaar
Problem: Insufficient code coverage for ex_docmd.c functions. Solution: Add more tests. (Yegappan Lakshmanan, closes #5618)
2020-02-05patch 8.2.0212: missing search/substitute pattern hardly testedv8.2.0212Bram Moolenaar
Problem: Missing search/substitute pattern hardly tested. Solution: Add test_clear_search_pat() and tests. (Yegappan Lakshmanan, closes #5579)
2020-02-02patch 8.2.0197: some Ex commands not sufficiently testedv8.2.0197Bram Moolenaar
Problem: Some Ex commands not sufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5565)
2020-01-29patch 8.2.0174: various commands not completely testedv8.2.0174Bram Moolenaar
Problem: Various commands not completely tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5551)
2019-11-10patch 8.1.2282: crash when passing many arguments through a partialv8.1.2282Bram Moolenaar
Problem: Crash when passing many arguments through a partial. (Andy Massimino) Solution: Check the number of arguments. (closes #5186)
2019-11-09patch 8.1.2280: crash when passing partial to substitute()v8.1.2280Bram Moolenaar
Problem: Crash when passing partial to substitute(). Solution: Take extra arguments into account. (closes #5186)
2019-10-31patch 8.1.2236: ml_get error if pattern matches beyond last linev8.1.2236Bram Moolenaar
Problem: Ml_get error if pattern matches beyond last line. Solution: Adjust position if needed. (Christian Brabandt, closes #5139)
2019-09-07patch 8.1.2004: more functions can be used as methodsv8.1.2004Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-08-31patch 8.1.1951: mouse double click test is a bit flakyv8.1.1951Bram Moolenaar
Problem: Mouse double click test is a bit flaky. Solution: Add to list of flaky tests. Update a couple of comments.
2019-05-20patch 8.1.1360: buffer left 'nomodifiable' after :substitutev8.1.1360Bram Moolenaar
Problem: Buffer left 'nomodifiable' after :substitute. (Ingo Karkat) Solution: Save the value of 'modifiable' earlier' (Christian Brabandt, closes #4403)
2019-05-18patch 8.1.1345: stuck in sandbox with ":s/../\=Function/gn"v8.1.1345Bram Moolenaar
Problem: Stuck in sandbox with ":s/../\=Function/gn". Solution: Don't skip over code to restore sandbox. (Christian Brabandt)
2019-04-27patch 8.1.1214: old style testsv8.1.1214Bram Moolenaar
Problem: Old style tests. Solution: Move tests from test14 to new style test files. (Yegappan Lakshmanan, closes #4308)
2019-03-27patch 8.1.1061: when substitute string throws error, substitute happens anywayv8.1.1061Bram Moolenaar
Problem: When substitute string throws error, substitute happens anyway. Solution: Skip substitution when aborting. (closes #4161)
2019-02-10patch 8.1.0891: substitute command inssuficiently testedv8.1.0891Bram Moolenaar
Problem: Substitute command inssuficiently tested. Solution: Add more test coverage. (Dominique Pelle)
2019-02-10patch 8.1.0887: the 'l' flag in :subsitute is stickyv8.1.0887Bram Moolenaar
Problem: The 'l' flag in :subsitute is sticky. Solution: Reset the flag. (Dominique Pelle, closes #3925)
2019-01-09patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar
Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
2017-10-26patch 8.0.1221: still too many old style testsv8.0.1221Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2256)
2017-08-30patch 8.0.1022: test 80 is old stylev8.0.1022Bram Moolenaar
Problem: Test 80 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan)
2017-02-26patch 8.0.0374: invalid memory access when using :sc in Ex modev8.0.0374Bram Moolenaar
Problem: Invalid memory access when using :sc in Ex mode. (Dominique Pelle) Solution: Avoid the column being negative. Also fix a hang in Ex mode.
2017-02-17patch 8.0.0336: flags of :substitute not sufficiently testedv8.0.0336Bram Moolenaar
Problem: Flags of :substitute not sufficiently tested. Solution: Test up to two letter flag combinations. (James McCoy, closes #1479)
2016-09-02patch 7.4.2307v7.4.2307Bram Moolenaar
Problem: Several tests are old style. Solution: Turn them into new style tests. (Yegappan Lakshmanan)