Mercurial > vim
view src/testdir/test_lineending.vim @ 31645:fc259e8db5bf v9.0.1155
patch 9.0.1155: cannot use a class as a type
Commit: https://github.com/vim/vim/commit/eca2c5fff6f6ccad0df8824c4b4354d3f410d225
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 7 12:08:41 2023 +0000
patch 9.0.1155: cannot use a class as a type
Problem: Cannot use a class as a type.
Solution: Accept a class and interface name as a type.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 07 Jan 2023 13:15:04 +0100 |
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