diff options
author | Amaan Qureshi <amaanq12@gmail.com> | 2023-02-24 16:01:54 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2023-02-24 16:01:54 +0000 |
commit | def5521752abefe12db8cc3111a3b205ad1ac929 (patch) | |
tree | 82b28bafa27a09c7dd4fd53597f4bf486403df89 /runtime | |
parent | c2254764bcada43eea894eb5852a26d5ac5ca8b0 (diff) | |
download | vim-git-def5521752abefe12db8cc3111a3b205ad1ac929.tar.gz |
patch 9.0.1351: Dhall files are not recognizedv9.0.1351
Problem: Dhall files are not recognized.
Solution: Add patterns for Dhall files. (Amaan Qureshi, closes #12052)
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 1efa46b43..1c1315bec 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -522,6 +522,9 @@ au BufNewFile,BufRead */etc/apt/sources.list.d/*.list setf debsources " Deny hosts au BufNewFile,BufRead denyhosts.conf setf denyhosts +" Dhall +au BufNewFile,BufRead *.dhall setf dhall + " dnsmasq(8) configuration files au BufNewFile,BufRead */etc/dnsmasq.conf setf dnsmasq |