summaryrefslogtreecommitdiff
path: root/src/testdir/test95.in
AgeCommit message (Collapse)Author
2015-08-11patch 7.4.819Bram Moolenaar
Problem: Beeping when running the tests. Solution: Fix 41 beeps. (Roland Eggner)
2014-05-13updated for version 7.4.294Bram Moolenaar
Problem: Test files missing from patch. Solution: Patch the test files.
2014-05-13updated for version 7.4.292Bram Moolenaar
Problem: Searching for "a" does not match accented "a" with new regexp engine, does match with old engine. (David Bürgin) "ca" does not match "ca" with accented "a" with either engine. Solution: Change the old engine, check for following composing character also for single-byte patterns.
2013-07-21updated for version 7.4a.036Bram Moolenaar
Problem: "\p" in a regexp does not match double-width characters. (Yukihiro Nakadaira) Solution: Don't count display cells, use vim_isprintc().
2013-05-30updated for version 7.3.1073Bram Moolenaar
Problem: New regexp engine may run out of states. Solution: Allocate states dynamically. Also make the test report errors.
2013-05-26updated for version 7.3.1023Bram Moolenaar
Problem: Searching for composing char only and using \Z has different results. Solution: Make it match the composing char, matching everything is not useful.
2013-05-26updated for version 7.3.1021Bram Moolenaar
Problem: New regexp engine does not ignore order of composing chars. Solution: Ignore composing chars order.
2013-05-25updated for version 7.3.1020Bram Moolenaar
Problem: Not all patterns are tested with auto / old / new engine. Solution: Test patterns with three values of 'regexpengine'.
2013-05-25updated for version 7.3.1015Bram Moolenaar
Problem: New regexp engine: Matching composing characters is wrong. Solution: Fix matching composing characters.
2013-05-24updated for version 7.3.1012Bram Moolenaar
Problem: \Z does not work properly with the new regexp engine. Solution: Make \Z work. Add tests.
2013-05-24updated for version 7.3.1011Bram Moolenaar
Problem: New regexp engine is inefficient with multi-byte characters. Solution: Handle a character at a time instead of a byte at a time. Also make \Z partly work.
2013-05-24updated for version 7.3.1010Bram Moolenaar
Problem: New regexp: adding \Z makes every character match. Solution: Only apply ireg_icombine for composing characters. Alsl add missing change from patch 1008. (Ken Takata)
2013-05-23updated for version 7.3.1008Bram Moolenaar
Problem: Test 95 fails on MS-Windows. Solution: Set 'nomore'. Change \i to \f. Change multi-byte character to something that is not matching \i. (Ken Takata)
2013-05-21updated for version 7.3.987Bram Moolenaar
Problem: No easy to run an individual test. Tests 64 fails when 'encoding' is not utf-8. Solution: Add individual test targets to the Makefile. Move some lines from test 64 to 95.
2013-05-21updated for version 7.3.986Bram Moolenaar
Problem: Test 95 doesn't pass when 'encoding' isn't utf-8. (Yasuhiro Matsumoto) Solution: Force 'encoding' to be utf-8.
2013-05-21updated for version 7.3.982Bram Moolenaar
Problem: In the new regexp engine \p does not work on multi-byte characters. Solution: Don't point to an integer but the characters.
2013-05-19updated for version 7.3.970Bram Moolenaar
Problem: Syntax highlighting can be slow. Solution: Include the NFA regexp engine. Add the 'regexpengine' option to select which one is used. (various authors, including Ken Takata, Andrei Aiordachioaie, Russ Cox, Xiaozhou Liua, Ian Young)