summaryrefslogtreecommitdiff
path: root/src/testdir/test_utf8.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1626: test for strchars() fails with different error numberv8.2.1626Bram Moolenaar2020-09-061-1/+1
| | | | | Problem: Test for strchars() fails with different error number. Solution: Adjust the error number.
* patch 8.2.1537: memory acccess error when using setcellwidths()v8.2.1537Bram Moolenaar2020-08-281-1/+1
| | | | | Problem: Memory acccess error when using setcellwidths(). Solution: Use array and pointers correctly.
* patch 8.2.1535: it is not possible to specify cell widths of charactersv8.2.1535Bram Moolenaar2020-08-281-0/+35
| | | | | Problem: It is not possible to specify cell widths of characters. Solution: Add setcellwidths().
* patch 8.2.1183: assert_fails() checks the last error messagev8.2.1183Bram Moolenaar2020-07-111-1/+1
| | | | | | Problem: assert_fails() checks the last error message. Solution: Check the first error, it is more relevant. Fix all the tests that rely on the old behavior.
* patch 8.2.0610: some tests are still old stylev8.2.0610Bram Moolenaar2020-04-201-0/+3
| | | | | Problem: Some tests are still old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5957)
* patch 8.2.0448: various functions not properly testedv8.2.0448Bram Moolenaar2020-03-251-0/+5
| | | | | | Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
* patch 8.1.2004: more functions can be used as methodsv8.1.2004Bram Moolenaar2019-09-071-1/+1
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1993: more functions can be used as methodsv8.1.1993Bram Moolenaar2019-09-061-1/+1
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1954: more functions can be used as a methodv8.1.1954Bram Moolenaar2019-08-311-1/+1
| | | | | Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
* patch 8.1.1122: char2nr() does not handle composing charactersv8.1.1122Bram Moolenaar2019-04-061-0/+43
| | | | | Problem: char2nr() does not handle composing characters. Solution: Add str2list() and list2str(). (Ozaki Kiichi, closes #4190)
* patch 8.1.1079: no need for a separate ScreenLinesUtf8() test functionv8.1.1079Bram Moolenaar2019-03-301-1/+1
| | | | | Problem: No need for a separate ScreenLinesUtf8() test function. Solution: Get the composing characters with ScreenLines().
* patch 8.1.1071: cannot get composing characters from the screenv8.1.1071Bram Moolenaar2019-03-291-0/+35
| | | | | | Problem: Cannot get composing characters from the screen. Solution: Add screenchars() and screenstring(). (partly by Ozaki Kiichi, closes #4059)
* patch 8.1.0811: too many #ifdefsv8.1.0811Bram Moolenaar2019-01-241-3/+0
| | | | | Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
* patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar2019-01-091-6/+6
| | | | | Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
* patch 8.0.0250: virtcol() does not work well for multi-byte charactersv8.0.0250Bram Moolenaar2017-01-281-0/+65
Problem: When virtcol() gets a column that is not the first byte of a multi-byte character the result is unpredictable. (Christian Ludwig) Solution: Correct the column to the first byte of a multi-byte character. Change the utf-8 test to new style.