Tests for Unicode manipulations vim: set ft=vim : STARTTEST :so small.vim :set encoding=utf-8 :" Visual block Insert adjusts for multi-byte char :new :call setline(1, ["aaa", "あああ", "bbb"]) :exe ":norm! gg0l\jjIx\" :let r = getline(1, '$') : :bwipeout! :$put=r :" Test for built-in function strchars() :for str in ["a", "あいa", "A\u20dd", "A\u20dd\u20dd", "\u20dd"] : $put=strchars(str) : $put=strchars(str, 0) : $put=strchars(str, 1) :endfor :call garbagecollect(1) :/^start:/,$wq! test.out ENDTEST start: