diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-10-29 09:03:15 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-10-30 08:07:50 +0800 |
commit | feabc1c98cb077f60fde1a14e8540f2cf99eb8d2 (patch) | |
tree | 7cf648efe976fbac85e36f62964f1146b046aa54 /src/nvim/testdir/test_fixeol.vim | |
parent | 8d38e1ad34552293de9e562b73c727ec119fd847 (diff) | |
download | rneovim-feabc1c98cb077f60fde1a14e8540f2cf99eb8d2.tar.gz rneovim-feabc1c98cb077f60fde1a14e8540f2cf99eb8d2.tar.bz2 rneovim-feabc1c98cb077f60fde1a14e8540f2cf99eb8d2.zip |
vim-patch:9.0.0816: CTRL-Z at end of file is always dropped
Problem: CTRL-Z at end of file is always dropped.
Solution: Add the 'endoffile' option, like the 'endofline' option.
(closes vim/vim#11408, closes vim/vim#11397)
Cherry-pick test_fixeol.vim changes from patch 8.2.1432.
Cherry-pick 'endoffile' changes from latest Vim runtime update.
https://github.com/vim/vim/commit/fb0cf2357e0c85bbfd9f9178705ad8d77b6b3b4e
vim-patch:f0b567e32a46
Revert unintended Makefile change
https://github.com/vim/vim/commit/f0b567e32a462fe838170a202919d18b53eff987
vim-patch:72c8e3c070b3
Fix wrong struct access for member.
https://github.com/vim/vim/commit/72c8e3c070b30f82bc0d203a62c168e43a13e99b
vim-patch:3f68a4136eb9
Add missing entry for the 'endoffile' option.
https://github.com/vim/vim/commit/3f68a4136eb99840d739af5133ab31948f273f63
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/testdir/test_fixeol.vim')
-rw-r--r-- | src/nvim/testdir/test_fixeol.vim | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/nvim/testdir/test_fixeol.vim b/src/nvim/testdir/test_fixeol.vim index 32cb059e26..3ede84f49e 100644 --- a/src/nvim/testdir/test_fixeol.vim +++ b/src/nvim/testdir/test_fixeol.vim @@ -1,16 +1,17 @@ -" Tests for 'fixeol' and 'eol' +" Tests for 'fixeol', 'eof' and 'eol' + func Test_fixeol() " first write two test files – with and without trailing EOL " use Unix fileformat for consistency set ff=unix enew! - call setline('.', 'with eol') + call setline('.', 'with eol or eof') w! XXEol enew! - set noeol nofixeol - call setline('.', 'without eol') + set noeof noeol nofixeol + call setline('.', 'without eol or eof') w! XXNoEol - set eol fixeol + set eol eof fixeol bwipe XXEol XXNoEol " try editing files with 'fixeol' disabled @@ -43,6 +44,8 @@ func Test_fixeol() call delete('XXNoEol') call delete('XXTestEol') call delete('XXTestNoEol') - set ff& fixeol& eol& + set ff& fixeol& eof& eol& enew! endfunc + +" vim: shiftwidth=2 sts=2 expandtab |