Mercurial > vim
view src/testdir/test88.in @ 7683:ec434c82f72c v7.4.1140
commit https://github.com/vim/vim/commit/e266d6d664d6d743c79797af400b2c01ec746216
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 19 20:51:32 2016 +0100
patch 7.4.1140
Problem: Recognizing <sid> does not work when the language is Turkish.
(Christian Brabandt)
Solution: Use MB_STNICMP() instead of STNICMP().
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 19 Jan 2016 21:00:07 +0100 |
parents | 43f444efe6a2 |
children |
line wrap: on
line source
vim: set ft=vim Tests for correct display (cursor column position) with +conceal and tabulators. STARTTEST :so small.vim :if !has('conceal') e! test.ok wq! test.out :endif :" Conceal settings. :set conceallevel=2 :set concealcursor=nc :syntax match test /|/ conceal :" Save current cursor position. Only works in <expr> mode, can't be used :" with :normal because it moves the cursor to the command line. Thanks to ZyX :" <zyx.vim@gmail.com> for the idea to use an <expr> mapping. :let positions = [] :nnoremap <expr> GG ":let positions += ['".screenrow().":".screencol()."']\n" :" Start test. /^start: :normal ztj GGk :" We should end up in the same column when running these commands on the two :" lines. :normal ft GGk :normal $ GGk :normal 0j GGk :normal ft GGk :normal $ GGk :normal 0j0j GGk :" Same for next test block. :normal ft GGk :normal $ GGk :normal 0j GGk :normal ft GGk :normal $ GGk :normal 0j0j GGk :" And check W with multiple tabs and conceals in a line. :normal W GGk :normal W GGk :normal W GGk :normal $ GGk :normal 0j GGk :normal W GGk :normal W GGk :normal W GGk :normal $ GGk :set lbr :normal $ GGk :set list listchars=tab:>- :normal 0 GGk :normal W GGk :normal W GGk :normal W GGk :normal $ GGk :" Display result. :call append('$', 'end:') :call append('$', positions) :/^end/,$wq! test.out ENDTEST start: .concealed. text |concealed| text .concealed. text |concealed| text .a. .b. .c. .d. |a| |b| |c| |d|