diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-10-10 21:50:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-10-10 21:50:25 +0200 |
commit | 10a1a534d1ae1d798bb695f9a521052ebbf1e289 (patch) | |
tree | 30092cd78cc49e7d55ef646ed49bef1a94fd2234 /runtime | |
parent | 9becdf2b98e56d5eb193f3413d706ea433269216 (diff) | |
download | vim-git-10a1a534d1ae1d798bb695f9a521052ebbf1e289.tar.gz |
patch 8.2.1827: filetype detection does not test enough file namesv8.2.1827
Problem: Filetype detection does not test enough file names.
Solution: Test more file names. (Adam Stankiewicz, closes #7099)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 2b134c22b..b647e25a4 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1342,13 +1342,6 @@ au BufNewFile,BufRead *.rego setf rego " Rexx au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit setf rexx -" R (Splus) -if has("fname_case") - au BufNewFile,BufRead *.s,*.S setf r -else - au BufNewFile,BufRead *.s setf r -endif - " R Help file if has("fname_case") au BufNewFile,BufRead *.rd,*.Rd setf rhelp |