diff options
author | Alessandro Pezzoni <alessandro.pezzoni@anaplan.com> | 2022-08-29 11:57:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-29 11:57:30 +0100 |
commit | bf26941f40923d331169a4ecb7341608f5d1ca38 (patch) | |
tree | da9d65817004eb8c21d16ef685421e29daf6bada /runtime | |
parent | e7cda97b6b578b33a42de0d27ac2876337c641ca (diff) | |
download | vim-git-bf26941f40923d331169a4ecb7341608f5d1ca38.tar.gz |
patch 9.0.0314: VDM files are not recognizedv9.0.0314
Problem: VDM files are not recognized.
Solution: Add patterns for VDM files. (Alessandro Pezzoni, closes #11004)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 797c73a6a..50de28624 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -2091,6 +2091,11 @@ au BufNewFile,BufRead */.config/upstart/*.override setf upstart " Vala au BufNewFile,BufRead *.vala setf vala +" VDM +au BufRead,BufNewFile *.vdmpp,*.vpp setf vdmpp +au BufRead,BufNewFile *.vdmrt setf vdmrt +au BufRead,BufNewFile *.vdmsl,*.vdm setf vdmsl + " Vera au BufNewFile,BufRead *.vr,*.vri,*.vrh setf vera |