view src/testdir/test_smartindent.vim @ 10505:b0cd1a60939c

commit https://github.com/vim/vim/commit/294740d2ac42e3dfdc7f0f6f02a6e2ff2d17c848 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 6 15:28:44 2017 +0100 Attempt to make coverage working again.
author Christian Brabandt <cb@256bit.org>
date Fri, 06 Jan 2017 15:30:04 +0100
parents eb9a7296ae9f
children 268b1036cd17
line wrap: on
line source


" Tests for not doing smart indenting when it isn't set.
function! Test_nosmartindent()
  new
  call append(0, ["		some test text",
      	\ "		test text",
      	\ "test text",
      	\ "		test text"])
  set nocindent nosmartindent autoindent
  exe "normal! gg/some\<CR>"
  exe "normal! 2cc#test\<Esc>"
  call assert_equal("		#test", getline(1))
  enew! | close
endfunction