comparison runtime/filetype.vim @ 31125:0100be942b82 v9.0.0897

patch 9.0.0897: Clinical Quality Language files are not recognized Commit: https://github.com/vim/vim/commit/12babe45a389cd1ea8befd5b06239e877b4abbba Author: mgramigna <mgramigna@mitre.org> Date: Thu Nov 17 18:30:16 2022 +0000 patch 9.0.0897: Clinical Quality Language files are not recognized Problem: Clinical Quality Language files are not recognized. Solution: Add the "*.cql" pattern. (Matthew Gramigna, closes https://github.com/vim/vim/issues/11452)
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Nov 2022 19:45:03 +0100
parents 5acd6f02ea35
children 20cf2080f1ee
comparison
equal deleted inserted replaced
31124:3dc3209008eb 31125:0100be942b82
416 " Configure scripts 416 " Configure scripts
417 au BufNewFile,BufRead configure.in,configure.ac setf config 417 au BufNewFile,BufRead configure.in,configure.ac setf config
418 418
419 " Cooklang 419 " Cooklang
420 au BufNewFile,BufRead *.cook setf cook 420 au BufNewFile,BufRead *.cook setf cook
421
422 " Clinical Quality Language (CQL)
423 " .cql is also mentioned as the 'XDCC Catcher queue list' file extension.
424 " If support for XDCC Catcher is needed in the future, the contents of the file
425 " needs to be inspected.
426 au BufNewFile,BufRead *.cql setf cqlang
421 427
422 " CSV Files 428 " CSV Files
423 au BufNewFile,BufRead *.csv setf csv 429 au BufNewFile,BufRead *.csv setf csv
424 430
425 " CUDA Compute Unified Device Architecture 431 " CUDA Compute Unified Device Architecture