diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-08-19 06:13:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 06:13:08 -0700 |
commit | 19a0d90bb3479bb6516be229f6001646329d842f (patch) | |
tree | 9c4aa1f2c91d71c10cc42e9e3eed04627cc97482 /test/functional/legacy/fixeol_spec.lua | |
parent | 7bff642169438a66557b65d6aba80536eaf570fa (diff) | |
parent | d8ab8cccd0cf5acdf3e7c3ca229cad4160a6fc2e (diff) | |
download | rneovim-19a0d90bb3479bb6516be229f6001646329d842f.tar.gz rneovim-19a0d90bb3479bb6516be229f6001646329d842f.tar.bz2 rneovim-19a0d90bb3479bb6516be229f6001646329d842f.zip |
Merge #15410 defaults: 'hidden', 'nojoinspaces'
ref #6289
Diffstat (limited to 'test/functional/legacy/fixeol_spec.lua')
-rw-r--r-- | test/functional/legacy/fixeol_spec.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/legacy/fixeol_spec.lua b/test/functional/legacy/fixeol_spec.lua index 50236e8617..d3ff86d349 100644 --- a/test/functional/legacy/fixeol_spec.lua +++ b/test/functional/legacy/fixeol_spec.lua @@ -23,8 +23,6 @@ describe('fixeol', function() it('is working', function() -- First write two test files – with and without trailing EOL. - -- Use Unix fileformat for consistency. - feed_command('set ff=unix') feed_command('enew!') feed('awith eol<esc>:w! XXEol<cr>') feed_command('enew!') @@ -40,7 +38,7 @@ describe('fixeol', function() feed_command('e! XXNoEol') feed('ostays without<esc>:set nofixeol<cr>') feed_command('w! XXTestNoEol') - feed_command('bwipe XXEol XXNoEol XXTestEol XXTestNoEol') + feed_command('bwipe! XXEol XXNoEol XXTestEol XXTestNoEol') feed_command('set fixeol') -- Append "END" to each file so that we can see what the last written char was. |