blob: 4a8d59952e4510b7d77318ec533bd70162a6f67d [file] [log] [blame]
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02001" Test for block inserting
2"
3" TODO: rewrite test39.in into this new style test
4
5func Test_blockinsert_indent()
6 new
7 filetype plugin indent on
8 setlocal sw=2 et ft=vim
9 call setline(1, ['let a=[', ' ''eins'',', ' ''zwei'',', ' ''drei'']'])
10 call cursor(2, 3)
11 exe "norm! \<c-v>2jI\\ \<esc>"
12 call assert_equal(['let a=[', ' \ ''eins'',', ' \ ''zwei'',', ' \ ''drei'']'],
13 \ getline(1,'$'))
14 " reset to sane state
15 filetype off
16 bwipe!
17endfunc
18
19
20" vim: shiftwidth=2 sts=2 expandtab