summaryrefslogtreecommitdiff
path: root/src/testdir/test95.ok
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0014: test69 and test95 are old stylev8.2.0014Bram Moolenaar2019-12-161-140/+0
| | | | | Problem: Test69 and test95 are old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5365)
* updated for version 7.4.294v7.4.294Bram Moolenaar2014-05-131-0/+12
| | | | | Problem: Test files missing from patch. Solution: Patch the test files.
* updated for version 7.4.292v7.4.292Bram Moolenaar2014-05-131-0/+6
| | | | | | | | 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.
* updated for version 7.4a.036v7.4a.036Bram Moolenaar2013-07-211-0/+7
| | | | | | Problem: "\p" in a regexp does not match double-width characters. (Yukihiro Nakadaira) Solution: Don't count display cells, use vim_isprintc().
* updated for version 7.3.1023v7.3.1023Bram Moolenaar2013-05-261-0/+16
| | | | | | | Problem: Searching for composing char only and using \Z has different results. Solution: Make it match the composing char, matching everything is not useful.
* updated for version 7.3.1021v7.3.1021Bram Moolenaar2013-05-261-0/+17
| | | | | Problem: New regexp engine does not ignore order of composing chars. Solution: Ignore composing chars order.
* updated for version 7.3.1020v7.3.1020Bram Moolenaar2013-05-251-33/+81
| | | | | Problem: Not all patterns are tested with auto / old / new engine. Solution: Test patterns with three values of 'regexpengine'.
* updated for version 7.3.1015v7.3.1015Bram Moolenaar2013-05-251-0/+10
| | | | | Problem: New regexp engine: Matching composing characters is wrong. Solution: Fix matching composing characters.
* updated for version 7.3.1012v7.3.1012Bram Moolenaar2013-05-241-0/+9
| | | | | Problem: \Z does not work properly with the new regexp engine. Solution: Make \Z work. Add tests.
* updated for version 7.3.1011v7.3.1011Bram Moolenaar2013-05-241-0/+2
| | | | | | 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.
* updated for version 7.3.1010v7.3.1010Bram Moolenaar2013-05-241-0/+1
| | | | | | 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)
* updated for version 7.3.1008v7.3.1008Bram Moolenaar2013-05-231-1/+1
| | | | | | 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)
* updated for version 7.3.987v7.3.987Bram Moolenaar2013-05-211-0/+5
| | | | | | | 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.
* updated for version 7.3.982v7.3.982Bram Moolenaar2013-05-211-0/+1
| | | | | | Problem: In the new regexp engine \p does not work on multi-byte characters. Solution: Don't point to an integer but the characters.
* updated for version 7.3.970v7.3.970Bram Moolenaar2013-05-191-0/+6
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)