view src/testdir/test_blockedit.vim @ 13620:4faf77b96432 v8.0.1682

patch 8.0.1682: auto indenting breaks inserting a block commit https://github.com/vim/vim/commit/8c87a2b1fec85e4aac33f71586ac1514536fc66b Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 10 13:15:47 2018 +0200 patch 8.0.1682: auto indenting breaks inserting a block Problem: Auto indenting breaks inserting a block. Solution: Do not check for cursor movement if indent was changed. (Christian Brabandt, closes #2778)
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Apr 2018 13:30:07 +0200
parents
children 7ed76dcf0d94
line wrap: on
line source

" Test for block inserting
"
" TODO: rewrite test39.in into this new style test

func Test_blockinsert_indent()
  new
  filetype plugin indent on
  setlocal sw=2 et ft=vim
  call setline(1, ['let a=[', '  ''eins'',', '  ''zwei'',', '  ''drei'']'])
  call cursor(2, 3)
  exe "norm! \<c-v>2jI\\ \<esc>"
  call assert_equal(['let a=[', '      \ ''eins'',', '      \ ''zwei'',', '      \ ''drei'']'],
        \ getline(1,'$'))
  " reset to sane state
  filetype off
  bwipe!
endfunc


" vim: shiftwidth=2 sts=2 expandtab