Mercurial > vim
view src/testdir/test_utf8.in @ 6954:a958ac497a81 v7.4.795
patch 7.4.795
Problem: The 'fixeol' option is not copied to a new window.
Solution: Copy the option value. (Yasuhiro Matsumoto)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 22 Jul 2015 22:19:38 +0200 |
parents | 66ab6ec256d1 |
children | e45271250496 |
line wrap: on
line source
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\<C-V>jjIx\<Esc>" :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: