Patch 9.0.0897
Problem: Clinical Quality Language files are not recognized.
Solution: Add the "*.cql" pattern. (Matthew Gramigna, closes #11452)
Files: runtime/filetype.vim, src/testdir/test_filetype.vim
*** ../vim-9.0.0896/runtime/filetype.vim 2022-11-07 11:17:24.377584834
+0000
--- runtime/filetype.vim 2022-11-17 18:29:21.772151183 +0000
***************
*** 419,424 ****
--- 419,430 ----
" 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
*** ../vim-9.0.0896/src/testdir/test_filetype.vim 2022-11-07
11:17:24.377584834 +0000
--- src/testdir/test_filetype.vim 2022-11-17 18:26:42.720048291 +0000
***************
*** 124,129 ****
--- 124,130 ----
\ 'context': ['tex/context/any/file.tex', 'file.mkii', 'file.mkiv',
'file.mkvi', 'file.mkxl', 'file.mklx'],
\ 'cook': ['file.cook'],
\ 'cpp': ['file.cxx', 'file.c++', 'file.hh', 'file.hxx', 'file.hpp',
'file.ipp', 'file.moc', 'file.tcc', 'file.inl', 'file.tlh'],
+ \ 'cqlang': ['file.cql'],
\ 'crm': ['file.crm'],
\ 'crontab': ['crontab', 'crontab.file', '/etc/cron.d/file',
'any/etc/cron.d/file'],
\ 'cs': ['file.cs', 'file.csx'],
*** ../vim-9.0.0896/src/version.c 2022-11-17 16:43:32.279876591 +0000
--- src/version.c 2022-11-17 18:28:25.048114543 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 897,
/**/
--
>From "know your smileys":
(:-# Said something he shouldn't have
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20221117183041.7A80D1C0BB0%40moolenaar.net.