view src/testdir/test_smartindent.vim @ 11597:72b20190dce6 v8.0.0681

patch 8.0.0681: unnamed register only contains the last deleted text commit https://github.com/vim/vim/commit/18d90b95c49d9ff1c635dd762864022aab8e71f1 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 27 15:39:14 2017 +0200 patch 8.0.0681: unnamed register only contains the last deleted text Problem: Unnamed register only contains the last deleted text when appending deleted text to a register. (Wolfgang Jeltsch) Solution: Only set y_previous when not using y_append. (Christian Brabandt)
author Christian Brabandt <cb@256bit.org>
date Tue, 27 Jun 2017 15:45:03 +0200
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