commit | 402115f1c2b4d0704a822206f2e6e931e721c129 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Jan 22 20:55:04 2021 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Jan 22 20:55:04 2021 +0100 |
tree | 6942a3220532e5336d80dab93c9ffd6c54a49779 | |
parent | 0d3de8cb590aed90be71d96eb3dbc6addf80bb11 [diff] [blame] |
patch 8.2.2392: fennel filetype not recognized Problem: Fennel filetype not recognized. Solution: Detect with pattern and hashbang. (Chinmay Dalal, closes #7729)
diff --git a/runtime/scripts.vim b/runtime/scripts.vim index 9217b44..6448c54 100644 --- a/runtime/scripts.vim +++ b/runtime/scripts.vim
@@ -186,6 +186,10 @@ elseif s:name =~# 'instantfpc\>' set ft=pascal + " Fennel + elseif s:name =~# 'fennel\>' + set ft=fennel + endif unlet s:name