view src/testdir/test_lineending.vim @ 35136:f2b94f240b7d v9.1.0398

patch 9.1.0398: Vim9: imported vars are not properly type checked Commit: https://github.com/vim/vim/commit/9937d8b61922a02311509fb3352583d9e8c54885 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed May 8 20:24:33 2024 +0200 patch 9.1.0398: Vim9: imported vars are not properly type checked Problem: Vim9: imported vars are not properly type checked Solution: Check the imported variable type properly (Yegappan Lakshmanan) closes: #14729 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 08 May 2024 20:30:07 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" Tests for saving/loading a file with some lines ending in
" CTRL-M, some not

func Test_lineending()
  let l = ["this line ends in a\<CR>",
	      \ "this one doesn't",
	      \ "this one does\<CR>",
	      \ "and the last one doesn't"]
  set ta tx
  enew!
  call append(0, l)
  $delete
  write Xfile1
  bwipe Xfile1
  edit Xfile1
  let t = getline(1, '$')
  call assert_equal(l, t)
  new | only
  call delete('Xfile1')
endfunc

" vim: shiftwidth=2 sts=2 expandtab