summaryrefslogtreecommitdiff
path: root/src/testdir/test_filetype.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.1187: cannot recognize Pipfilev8.1.1187Bram Moolenaar2019-04-191-2/+2
| | | | | Problem: Cannot recognize Pipfile. Solution: Use existing filetypes. (Charles Ross, closes #4280)
* patch 8.1.1177: .ts files are recognized as xml, typescript is more commonv8.1.1177Bram Moolenaar2019-04-161-1/+2
| | | | | Problem: .ts files are recognized as xml, while typescript is more common. Solution: Recognize .ts files as typescript. (closes #4264)
* patch 8.1.0559: command line completion not sufficiently testedv8.1.0559Bram Moolenaar2018-12-021-0/+4
| | | | | Problem: Command line completion not sufficiently tested. Solution: Add more tests. (Dominique Pelle, closes #3622)
* patch 8.1.0507: .raml files not properly detectedv8.1.0507Bram Moolenaar2018-11-031-0/+1
| | | | | Problem: .raml files not properly detected. Solution: Recognize .raml as raml instead of yaml. (closes #3594)
* patch 8.1.0498: /etc/gitconfig not recognized at a gitconfig filev8.1.0498Bram Moolenaar2018-10-271-1/+1
| | | | | Problem: /etc/gitconfig not recognized at a gitconfig file. Solution: Add pattern to filetype detection. (closes #3568)
* patch 8.1.0484: some file types are not recognizedv8.1.0484Bram Moolenaar2018-10-191-4/+5
| | | | | Problem: Some file types are not recognized. Solution: Update the file type detection.
* patch 8.0.1465: python2 and python3 detection not testedv8.0.1465Bram Moolenaar2018-02-031-1/+4
| | | | | | Problem: Python2 and python3 detection not tested. (Matej Cepl) Solution: Add test for detecting python2 and python3. Also detect a script using "js" as javascript.
* patch 8.0.1458: filetype detection test does not check all scriptsv8.0.1458Bram Moolenaar2018-02-031-0/+34
| | | | | Problem: Filetype detection test does not check all scripts. Solution: Add most scripts to the test
* patch 8.0.1438: filetype detection test not updated for changev8.0.1438Bram Moolenaar2018-01-291-1/+3
| | | | | Problem: Filetype detection test not updated for change. Solution: Update the test.
* patch 8.0.1222: test functions interfere with each otherv8.0.1222Bram Moolenaar2017-10-261-1/+1
| | | | | Problem: Test functions interfere with each other. Solution: Cleanup tab pages, windows and buffers. Reset option.
* patch 8.0.1007: no test for filetype detection for scriptsv8.0.1007Bram Moolenaar2017-08-271-0/+28
| | | | | Problem: No test for filetype detection for scripts. Solution: Add a first test file script filetype detection.
* patch 8.0.0906: don't recognize Couchbase filesv8.0.0906Bram Moolenaar2017-08-111-0/+1
| | | | | Problem: Don't recognize Couchbase files. Solution: Add filetype detection. (Eugene Ciurana, closes #1951)
* patch 8.0.0895: filetype test fails on MS-Windowsv8.0.0895Bram Moolenaar2017-08-091-16/+27
| | | | | Problem: Filetype test fails on MS-Windows. Solution: Fix file names.
* patch 8.0.0894: there is no test for runtime filetype detectionv8.0.0894Bram Moolenaar2017-08-091-0/+475
| | | | | Problem: There is no test for runtime filetype detection. Solution: Test a list of filetypes from patterns.
* patch 8.0.0613: the conf filetype is used before ftdetect from packagesv8.0.0613Bram Moolenaar2017-06-041-0/+43
Problem: The conf filetype detection is done before ftdetect scripts from packages that are added later. Solution: Add the FALLBACK argument to :setfiletype. (closes #1679, closes #1693)