Mercurial > vim
view src/testdir/test_visual.vim @ 9663:27d3250c6dd4 v7.4.2108
commit https://github.com/vim/vim/commit/adfc5c2f9cf8032e496fcd4793d829768bd6d0a7
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jul 27 22:56:48 2016 +0200
patch 7.4.2108
Problem: Netbeans test is flaky.
Solution: Wait for the cursor to be positioned.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 27 Jul 2016 23:00:07 +0200 |
parents | 81ba6e4eb72b |
children | 1e700d72561d |
line wrap: on
line source
" Tests for Visual mode. Uses double-wide character. if !has('multi_byte') finish endif if !has('visual') finish endif func Test_block_shift_multibyte() split call setline(1, ['xヹxxx', 'ヹxxx']) exe "normal 1G0l\<C-V>jl>" call assert_equal('x ヹxxx', getline(1)) call assert_equal(' ヹxxx', getline(2)) q! endfunc