diff options
author | ObserverOfTime <chronobserver@disroot.org> | 2022-09-20 12:02:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-09-20 12:02:28 +0100 |
commit | 7c046ae99ba85a4fdf1a546157e2ed6f12b79ea6 (patch) | |
tree | ad93e0673350861f8967bac7a68731f4e9ec7241 /runtime | |
parent | 500a1f9972afa354f0bc77bc535aabf9f5f0116d (diff) | |
download | vim-git-7c046ae99ba85a4fdf1a546157e2ed6f12b79ea6.tar.gz |
patch 9.0.0510: Chatito files are not recognizedv9.0.0510
Problem: Chatito files are not recognized.
Solution: Add a pattern for Chatito files. (closes #11174)
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 9af7880d0..78d723c58 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -299,6 +299,9 @@ au BufNewFile,BufRead cfengine.conf setf cfengine " ChaiScript au BufRead,BufNewFile *.chai setf chaiscript +" Chatito +au BufNewFile,BufRead *.chatito setf chatito + " Comshare Dimension Definition Language au BufNewFile,BufRead *.cdl setf cdl |