summaryrefslogtreecommitdiff
path: root/src/testdir/test_fileformat.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0264: fileformat test still fails on MS-Windowsv8.2.0264Bram Moolenaar2020-02-161-1/+1
| | | | | Problem: Fileformat test still fails on MS-Windows. Solution: Set fileformat of buffer in the right place.
* patch 8.2.0262: fileformat test fails on MS-Windowsv8.2.0262Bram Moolenaar2020-02-161-0/+3
| | | | | Problem: Fileformat test fails on MS-Windows. Solution: Set fileformat of buffer.
* patch 8.2.0261: some code not covered by testsv8.2.0261Bram Moolenaar2020-02-161-0/+20
| | | | | Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes #5645)
* patch 8.1.1412: test 30 is old stylev8.1.1412Bram Moolenaar2019-05-271-1/+246
| | | | | Problem: Test 30 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan, closes #4440)
* patch 8.0.0227: crash with ff=dos when first line in file has no CRv8.0.0227Bram Moolenaar2017-01-241-1/+1
| | | | | | Problem: Crash when 'fileformat' is forced to "dos" and the first line in the file is empty and does not have a CR character. Solution: Don't check for CR before the start of the buffer.
* patch 8.0.0226: test for patch 8.0.0224 missing CR charactersv8.0.0226Bram Moolenaar2017-01-241-11/+13
| | | | | | Problem: The test for patch 8.0.0224 misses the CR characters and passes even without the fix. (Christian Brabandt) Solution: Use double quotes and \<CR>.
* patch 8.0.0224: change to 'fileformats' from autocmd does not take effectv8.0.0224Bram Moolenaar2017-01-231-0/+14
| | | | | | | 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)
* patch 8.0.0031v8.0.0031Bram Moolenaar2016-10-121-0/+17
Problem: After ":bwipeout" 'fileformat' is not set to the right default. Solution: Get the default from 'fileformats'. (Mike Williams)