summaryrefslogtreecommitdiff
path: root/src/testdir/test80.ok
AgeCommit message (Collapse)Author
2017-08-30patch 8.0.1022: test 80 is old styleBram Moolenaar
Problem: Test 80 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan)
2014-04-02updated for version 7.4.241Bram Moolenaar
Problem: The string returned by submatch() does not distinguish between a NL from a line break and a NL that stands for a NUL character. Solution: Add a second argument to return a list. (ZyX)
2014-01-23updated for version 7.4.158Bram Moolenaar
Problem: Pattern containing \zs is not handled correctly by substitute(). Solution: Change how an empty match is skipped. (Yukihiro Nakadaira)
2013-09-29updated for version 7.4.045Bram Moolenaar
Problem: substitute() does not work properly when the pattern starts with "\ze". Solution: Detect an empty match. (Christian Brabandt)
2013-03-19updated for version 7.3.873Bram Moolenaar
Problem: Cannot easily use :s to make title case. Solution: Have "\L\u" result in title case. (James McCoy)
2013-02-06updated for version 7.3.803Bram Moolenaar
Problem: Substitute with confirmation and then "q" does not replace anything. (John McGowan) Solution: Do not break the loop, skip to the end.
2013-01-30updated for version 7.3.793Bram Moolenaar
Problem: New interactive :substutite behavior is not tested. Solution: Add tests. (Christian Brabandt)
2011-06-19updated for version 7.3.225Bram Moolenaar
Problem: Using "\n" in a substitute inside ":s" does not result in a line break. Solution: Change behavior inside vim_regexec_nl(). Add tests. (Motoya Kurotsu)