Bram Moolenaar | 8c87a2b | 2018-04-10 13:15:47 +0200 | [diff] [blame^] | 1 | " Test for block inserting |
| 2 | " |
| 3 | " TODO: rewrite test39.in into this new style test |
| 4 | |
| 5 | func 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! |
| 17 | endfunc |
| 18 | |
| 19 | |
| 20 | " vim: shiftwidth=2 sts=2 expandtab |