diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-23 21:31:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-23 21:31:09 +0100 |
commit | 7a2699e868bca781e26b060a44fc714d87cfa4ba (patch) | |
tree | ed571f2069e7687514658cbad2c40f3984ec09bd /src/testdir | |
parent | fffbf308dd98d1129ba4914d921ab47dc6a6c9b1 (diff) | |
download | vim-7a2699e868bca781e26b060a44fc714d87cfa4ba.zip |
patch 8.0.0224: change to 'fileformats' from autocmd does not take effect
Problem: When 'fileformats' is changed in a BufReadPre auto command, it
does not take effect in readfile(). (Gary Johnson)
Solution: Check the value of 'fileformats' after executing auto commands.
(Christian Brabandt)
Diffstat (limited to 'src/testdir')
-rw-r--r-- | src/testdir/test_fileformat.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/testdir/test_fileformat.vim b/src/testdir/test_fileformat.vim index 584f20cdf..256a7d5b1 100644 --- a/src/testdir/test_fileformat.vim +++ b/src/testdir/test_fileformat.vim @@ -15,3 +15,17 @@ func Test_fileformat_after_bw() call assert_equal(test_fileformats, &fileformat) set fileformats& endfunc + +func Test_fileformat_autocommand() + let filecnt=['', 'foobar', 'eins', '', 'zwei', 'drei', 'vier', 'fünf', ''] + let ffs=&ffs + call writefile(filecnt, 'Xfile', 'b') + au BufReadPre Xfile set ffs=dos ff=dos + new Xfile + call assert_equal('dos', &l:ff) + call assert_equal('dos', &ffs) + " cleanup + let &ffs=ffs + au! BufReadPre Xfile + bw! +endfunc |