comparison runtime/filetype.vim @ 28986:560793de4032 v8.2.5015

patch 8.2.5015: Hoon and Moonscript files are not recognized Commit: https://github.com/vim/vim/commit/bf82df0dd48a26404b92a596498b6892c9572c53 Author: =?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com> Date: Wed May 25 12:42:08 2022 +0100 patch 8.2.5015: Hoon and Moonscript files are not recognized Problem: Hoon and Moonscript files are not recognized. Solution: Add filetype patterns. (Goc Dundar, closes https://github.com/vim/vim/issues/10478)
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 May 2022 13:45:06 +0200
parents 239bd331e0a9
children 3fbc7462de59
comparison
equal deleted inserted replaced
28985:2954e5d75773 28986:560793de4032
407 " CUDA Compute Unified Device Architecture 407 " CUDA Compute Unified Device Architecture
408 au BufNewFile,BufRead *.cu,*.cuh setf cuda 408 au BufNewFile,BufRead *.cu,*.cuh setf cuda
409 409
410 " Dockerfile; Podman uses the same syntax with name Containerfile 410 " Dockerfile; Podman uses the same syntax with name Containerfile
411 " Also see Dockerfile.* below. 411 " Also see Dockerfile.* below.
412 au BufNewFile,BufRead Containerfile,Dockerfile,*.Dockerfile setf dockerfile 412 au BufNewFile,BufRead Containerfile,Dockerfile,dockerfile,*.[dD]ockerfile setf dockerfile
413 413
414 " WildPackets EtherPeek Decoder 414 " WildPackets EtherPeek Decoder
415 au BufNewFile,BufRead *.dcd setf dcd 415 au BufNewFile,BufRead *.dcd setf dcd
416 416
417 " Enlightenment configuration files 417 " Enlightenment configuration files
817 au BufNewFile,BufRead *.hjson setf hjson 817 au BufNewFile,BufRead *.hjson setf hjson
818 818
819 " Hollywood 819 " Hollywood
820 au BufRead,BufNewFile *.hws setf hollywood 820 au BufRead,BufNewFile *.hws setf hollywood
821 821
822 " Hoon
823 au BufRead,BufNewFile *.hoon setf hoon
824
822 " Tilde (must be before HTML) 825 " Tilde (must be before HTML)
823 au BufNewFile,BufRead *.t.html setf tilde 826 au BufNewFile,BufRead *.t.html setf tilde
824 827
825 " HTML (.shtml and .stm for server side) 828 " HTML (.shtml and .stm for server side)
826 au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm call dist#ft#FThtml() 829 au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm call dist#ft#FThtml()
1169 " Monk 1172 " Monk
1170 au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk 1173 au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc setf monk
1171 1174
1172 " MOO 1175 " MOO
1173 au BufNewFile,BufRead *.moo setf moo 1176 au BufNewFile,BufRead *.moo setf moo
1177
1178 " Moonscript
1179 au BufNewFile,BufRead *.moon setf moonscript
1174 1180
1175 " Modconf 1181 " Modconf
1176 au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf 1182 au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf
1177 1183
1178 " MPD is based on XML 1184 " MPD is based on XML