0
0
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:
Amaan Qureshi 2023-02-27 14:32:08 +00:00 committed by Bram Moolenaar
parent 5da901bb68
commit 80c5b2c0f7
3 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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'],

View File

@ -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,
/**/ /**/