Mercurial > vim
diff src/testdir/test_options.vim @ 31055:5a95f0c630b1 v9.0.0862
patch 9.0.0862: default value of 'endoffile' is wrong
Commit: https://github.com/vim/vim/commit/0aad88f073602849d1623122eb3c323f8e252def
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 12 11:54:26 2022 +0000
patch 9.0.0862: default value of 'endoffile' is wrong
Problem: Default value of 'endoffile' is wrong.
Solution: The default must be 'noendoffile'.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 12 Nov 2022 13:00:05 +0100 |
parents | 360f286b5869 |
children | b0717fcca5eb |
line wrap: on
line diff
--- a/src/testdir/test_options.vim +++ b/src/testdir/test_options.vim @@ -1453,5 +1453,17 @@ func Test_keywordprg_empty() let &keywordprg = k endfunc +" check that the very first buffer created does not have 'endoffile' set +func Test_endoffile_default() + let after =<< trim [CODE] + call writefile([execute('set eof?')], 'Xtestout') + qall! + [CODE] + if RunVim([], after, '') + call assert_equal(["\nnoendoffile"], readfile('Xtestout')) + endif + call delete('Xtestout') +endfunc + " vim: shiftwidth=2 sts=2 expandtab