diff options
author | Ananda Umamil <zweimach@zweimach.org> | 2022-02-12 10:33:56 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-12 10:33:56 +0000 |
commit | 0c3cc2fec31521b0697edc406f85b7a43e979860 (patch) | |
tree | 7e0b5243de2a51614150452f7f2d6156ab360c48 /runtime | |
parent | 41ee5b191376ee3c0394664de5a7e7d83974aaa4 (diff) | |
download | vim-git-0c3cc2fec31521b0697edc406f85b7a43e979860.tar.gz |
patch 8.2.4352: ReScript files are not recognizedv8.2.4352
Problem: ReScript files are not recognized.
Solution: Add the *.res and *.resi patterns. (Ananda Umamil, closes #9752)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 37126ad95..fe1f12cb0 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1547,6 +1547,9 @@ au BufNewFile,BufRead *.r,*.R call dist#ft#FTr() " Remind au BufNewFile,BufRead .reminders,*.remind,*.rem setf remind +" ReScript +au BufNewFile,BufRead *.res,*.resi setf rescript + " Resolv.conf au BufNewFile,BufRead resolv.conf setf resolv |