summaryrefslogtreecommitdiff
path: root/src/testdir/test_spell.vim
AgeCommit message (Collapse)Author
2017-06-22patch 8.0.0658: spell test is old styleBram Moolenaar
Problem: Spell test is old style. Solution: Turn the spell test into a new style test (pschuh, closes #1778)
2017-05-23patch 8.0.0601: no test coverage for :spellrepallBram Moolenaar
Problem: No test coverage for :spellrepall. Solution: Add a test. (Dominique Pelle, closes #1717)
2017-04-22patch 8.0.0582: illegal memory access with z= commandBram Moolenaar
Problem: Illegal memory access with z= command. (Dominique Pelle) Solution: Avoid case folded text to be longer than the original text. Use MB_PTR2LEN() instead of MB_BYTE2LEN().
2017-02-25patch 8.0.0364: ]s does not move cursor with two spell errors in one lineBram Moolenaar
Problem: ]s does not move cursor with two spell errors in one line. (Manuel Ortega) Solution: Don't stop search immediately when wrapped, search the line first. (Ken Takata) Add a test.