mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 9.0.1360: Cue files are not recognized
Problem: Cue files are not recognized. Solution: Add patterns for Cue files. (Amaan Qureshi, closes #12067)
This commit is contained in:
parent
5da901bb68
commit
80c5b2c0f7
@ -439,6 +439,9 @@ au BufNewFile,BufRead *.csv setf csv
|
|||||||
" CUDA Compute Unified Device Architecture
|
" CUDA Compute Unified Device Architecture
|
||||||
au BufNewFile,BufRead *.cu,*.cuh setf cuda
|
au BufNewFile,BufRead *.cu,*.cuh setf cuda
|
||||||
|
|
||||||
|
" Cue
|
||||||
|
au BufNewFile,BufRead *.cue setf cue
|
||||||
|
|
||||||
" Dockerfile; Podman uses the same syntax with name Containerfile
|
" Dockerfile; Podman uses the same syntax with name Containerfile
|
||||||
" Also see Dockerfile.* below.
|
" Also see Dockerfile.* below.
|
||||||
au BufNewFile,BufRead Containerfile,Dockerfile,dockerfile,*.[dD]ockerfile setf dockerfile
|
au BufNewFile,BufRead Containerfile,Dockerfile,dockerfile,*.[dD]ockerfile setf dockerfile
|
||||||
@ -1035,7 +1038,7 @@ au BufNewFile,BufRead *.ipynb setf json
|
|||||||
au BufNewFile,BufRead .prettierrc,.firebaserc,.stylelintrc setf json
|
au BufNewFile,BufRead .prettierrc,.firebaserc,.stylelintrc setf json
|
||||||
|
|
||||||
" JSONC (JSON with comments)
|
" JSONC (JSON with comments)
|
||||||
au BufNewFile,BufRead *.jsonc,.babelrc,.eslintrc,.jsfmtrc setf jsonc
|
au BufNewFile,BufRead *.jsonc,.babelrc,.eslintrc,.jsfmtrc setf jsonc
|
||||||
au BufNewFile,BufRead .jshintrc,.hintrc,.swrc,[jt]sconfig*.json setf jsonc
|
au BufNewFile,BufRead .jshintrc,.hintrc,.swrc,[jt]sconfig*.json setf jsonc
|
||||||
|
|
||||||
" JSON
|
" JSON
|
||||||
@ -1638,7 +1641,7 @@ au BufNewFile,BufRead *.ptl,*.pyi,SConstruct setf python
|
|||||||
au BufRead,BufNewFile *.ql,*.qll setf ql
|
au BufRead,BufNewFile *.ql,*.qll setf ql
|
||||||
|
|
||||||
" Quarto
|
" Quarto
|
||||||
au BufRead,BufNewFile *.qmd setf quarto
|
au BufRead,BufNewFile *.qmd setf quarto
|
||||||
|
|
||||||
" Radiance
|
" Radiance
|
||||||
au BufNewFile,BufRead *.rad,*.mat setf radiance
|
au BufNewFile,BufRead *.rad,*.mat setf radiance
|
||||||
|
@ -138,6 +138,7 @@ let s:filename_checks = {
|
|||||||
\ 'csv': ['file.csv'],
|
\ 'csv': ['file.csv'],
|
||||||
\ 'cucumber': ['file.feature'],
|
\ 'cucumber': ['file.feature'],
|
||||||
\ 'cuda': ['file.cu', 'file.cuh'],
|
\ 'cuda': ['file.cu', 'file.cuh'],
|
||||||
|
\ 'cue': ['file.cue'],
|
||||||
\ 'cupl': ['file.pld'],
|
\ 'cupl': ['file.pld'],
|
||||||
\ 'cuplsim': ['file.si'],
|
\ 'cuplsim': ['file.si'],
|
||||||
\ 'cvs': ['cvs123'],
|
\ 'cvs': ['cvs123'],
|
||||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1360,
|
||||||
/**/
|
/**/
|
||||||
1359,
|
1359,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user