summaryrefslogtreecommitdiff
path: root/src/testdir/test_utf8.vim
Commit message (Collapse)AuthorAgeFilesLines
* 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.