mirror of
https://github.com/neovim/neovim.git
synced 2025-10-13 05:16:09 +00:00
vim-patch:9.0.0897: Clinical Quality Language files are not recognized (#21094)
Problem: Clinical Quality Language files are not recognized.
Solution: Add the "*.cql" pattern. (Matthew Gramigna, closes vim/vim#11452)
12babe45a3
Co-authored-by: mgramigna <mgramigna@mitre.org>
This commit is contained in:
@@ -257,6 +257,7 @@ local extension = {
|
|||||||
cc = function(path, bufnr)
|
cc = function(path, bufnr)
|
||||||
return vim.g.cynlib_syntax_for_cc and 'cynlib' or 'cpp'
|
return vim.g.cynlib_syntax_for_cc and 'cynlib' or 'cpp'
|
||||||
end,
|
end,
|
||||||
|
cql = 'cqlang',
|
||||||
crm = 'crm',
|
crm = 'crm',
|
||||||
csx = 'cs',
|
csx = 'cs',
|
||||||
cs = 'cs',
|
cs = 'cs',
|
||||||
|
@@ -126,6 +126,7 @@ let s:filename_checks = {
|
|||||||
\ 'context': ['tex/context/any/file.tex', 'file.mkii', 'file.mkiv', 'file.mkvi', 'file.mkxl', 'file.mklx'],
|
\ 'context': ['tex/context/any/file.tex', 'file.mkii', 'file.mkiv', 'file.mkvi', 'file.mkxl', 'file.mklx'],
|
||||||
\ 'cook': ['file.cook'],
|
\ 'cook': ['file.cook'],
|
||||||
\ 'cpp': ['file.cxx', 'file.c++', 'file.hh', 'file.hxx', 'file.hpp', 'file.ipp', 'file.moc', 'file.tcc', 'file.inl', 'file.tlh'],
|
\ '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'],
|
\ 'crm': ['file.crm'],
|
||||||
\ 'crontab': ['crontab', 'crontab.file', '/etc/cron.d/file', 'any/etc/cron.d/file'],
|
\ 'crontab': ['crontab', 'crontab.file', '/etc/cron.d/file', 'any/etc/cron.d/file'],
|
||||||
\ 'cs': ['file.cs', 'file.csx'],
|
\ 'cs': ['file.cs', 'file.csx'],
|
||||||
|
Reference in New Issue
Block a user