summaryrefslogtreecommitdiff
path: root/runtime/filetype.vim
diff options
context:
space:
mode:
authormgramigna <mgramigna@mitre.org>2022-11-17 18:30:16 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-17 18:30:16 +0000
commit12babe45a389cd1ea8befd5b06239e877b4abbba (patch)
treed8bb375d65fafe5a1367a88998e3893d16c60e8f /runtime/filetype.vim
parent1d8765daba6f4b3b7fcf51a77e9d1ba0090c826e (diff)
downloadvim-git-12babe45a389cd1ea8befd5b06239e877b4abbba.tar.gz
patch 9.0.0897: Clinical Quality Language files are not recognizedv9.0.0897
Problem: Clinical Quality Language files are not recognized. Solution: Add the "*.cql" pattern. (Matthew Gramigna, closes #11452)
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r--runtime/filetype.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index ba3f81f94..5a6e83ed8 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -419,6 +419,12 @@ au BufNewFile,BufRead configure.in,configure.ac setf config
" Cooklang
au BufNewFile,BufRead *.cook setf cook
+" Clinical Quality Language (CQL)
+" .cql is also mentioned as the 'XDCC Catcher queue list' file extension.
+" If support for XDCC Catcher is needed in the future, the contents of the file
+" needs to be inspected.
+au BufNewFile,BufRead *.cql setf cqlang
+
" CSV Files
au BufNewFile,BufRead *.csv setf csv