summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
author=?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com>2022-05-25 12:42:08 +0100
committerBram Moolenaar <Bram@vim.org>2022-05-25 12:42:08 +0100
commitbf82df0dd48a26404b92a596498b6892c9572c53 (patch)
tree3a09bdefff6806be5815d7f3fc443352920db3e6 /runtime
parent4c3d21acaa09d929e6afe10288babe1d0af3de35 (diff)
patch 8.2.5015: Hoon and Moonscript files are not recognizedv8.2.5015
Problem: Hoon and Moonscript files are not recognized. Solution: Add filetype patterns. (Goc Dundar, closes #10478)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/filetype.vim8
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 9994f8aac0..da68ff4f72 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -409,7 +409,7 @@ au BufNewFile,BufRead *.cu,*.cuh setf cuda
" Dockerfile; Podman uses the same syntax with name Containerfile
" Also see Dockerfile.* below.
-au BufNewFile,BufRead Containerfile,Dockerfile,*.Dockerfile setf dockerfile
+au BufNewFile,BufRead Containerfile,Dockerfile,dockerfile,*.[dD]ockerfile setf dockerfile
" WildPackets EtherPeek Decoder
au BufNewFile,BufRead *.dcd setf dcd
@@ -819,6 +819,9 @@ au BufNewFile,BufRead *.hjson setf hjson
" Hollywood
au BufRead,BufNewFile *.hws setf hollywood
+" Hoon
+au BufRead,BufNewFile *.hoon setf hoon
+
" Tilde (must be before HTML)
au BufNewFile,BufRead *.t.html setf tilde
@@ -1172,6 +1175,9 @@ au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk
" MOO
au BufNewFile,BufRead *.moo setf moo
+" Moonscript
+au BufNewFile,BufRead *.moon setf moonscript
+
" Modconf
au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf