diff options
author | Christian Clason <c.clason@uni-graz.at> | 2021-12-15 16:10:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 16:10:03 +0100 |
commit | cf65071e2ef6defcb7125daddf09fc4a52cc85cd (patch) | |
tree | 2069d4f48282ea56a4d77cb2ce595350676c4f47 /runtime | |
parent | 576408ddde2f669f8a4a5e6782739f89edda4629 (diff) | |
download | rneovim-cf65071e2ef6defcb7125daddf09fc4a52cc85cd.tar.gz rneovim-cf65071e2ef6defcb7125daddf09fc4a52cc85cd.tar.bz2 rneovim-cf65071e2ef6defcb7125daddf09fc4a52cc85cd.zip |
vim-patch:8.2.3814: .csx files and .sln files are not recognized (#16662)
Problem: .csx files and .sln files are not recognized.
Solution: Add filetype patterns. (Doug Kearns)
https://github.com/vim/vim/commit/cfabad9bcf45650dee1f1f41ec4047f82a12f323
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index b93263eb6d..806748b7cb 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -256,7 +256,7 @@ au BufNewFile,BufRead *.lpc,*.ulpc setf lpc au BufNewFile,BufRead calendar setf calendar " C# -au BufNewFile,BufRead *.cs setf cs +au BufNewFile,BufRead *.cs,*.csx setf cs " CSDL au BufNewFile,BufRead *.csdl setf csdl @@ -1739,6 +1739,9 @@ au BufNewFile,BufRead *.speedup,*.spdata,*.spd setf spup " Slice au BufNewFile,BufRead *.ice setf slice +" Microsoft Visual Studio Solution +au BufNewFile,BufRead *.sln setf solution + " Spice au BufNewFile,BufRead *.sp,*.spice setf spice |