From 80c5b2c0f78b24e52c73bb162dda3ad85acd7e82 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 27 Feb 2023 14:32:08 +0000 Subject: 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) --- runtime/filetype.vim | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 1c1315becf..1e80997017 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -439,6 +439,9 @@ au BufNewFile,BufRead *.csv setf csv " CUDA Compute Unified Device Architecture au BufNewFile,BufRead *.cu,*.cuh setf cuda +" Cue +au BufNewFile,BufRead *.cue setf cue + " Dockerfile; Podman uses the same syntax with name Containerfile " Also see Dockerfile.* below. 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 " 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 " JSON @@ -1638,7 +1641,7 @@ au BufNewFile,BufRead *.ptl,*.pyi,SConstruct setf python au BufRead,BufNewFile *.ql,*.qll setf ql " Quarto -au BufRead,BufNewFile *.qmd setf quarto +au BufRead,BufNewFile *.qmd setf quarto " Radiance au BufNewFile,BufRead *.rad,*.mat setf radiance -- cgit v1.2.3