Mercurial > vim
view src/testdir/test_lineending.vim @ 13440:22439cdda382 v8.0.1594
patch 8.0.1594: :conform qall not tested with active terminal window
commit https://github.com/vim/vim/commit/435acdb88c849c6bac44ef30f24f29618b36af50
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 10 20:51:25 2018 +0100
patch 8.0.1594: :conform qall not tested with active terminal window
Problem: :conform qall not tested with active terminal window.
Solution: Add a test.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 10 Mar 2018 21:00:07 +0100 |
parents | 0240e7e3d736 |
children | 08940efa6b4e |
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