mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.3285: scdoc filetype is not recognized
Problem: Scdoc filetype is not recognized. Solution: Add filetype detection. (Gregory Anders, closes #8701)
This commit is contained in:
committed by
Bram Moolenaar
parent
80d7395dcf
commit
dd097bdc13
@@ -1526,6 +1526,9 @@ au BufNewFile,BufRead *.sbt setf sbt
|
|||||||
" Scilab
|
" Scilab
|
||||||
au BufNewFile,BufRead *.sci,*.sce setf scilab
|
au BufNewFile,BufRead *.sci,*.sce setf scilab
|
||||||
|
|
||||||
|
" scdoc
|
||||||
|
au BufNewFile,BufRead *.scd setf scdoc
|
||||||
|
|
||||||
" SCSS
|
" SCSS
|
||||||
au BufNewFile,BufRead *.scss setf scss
|
au BufNewFile,BufRead *.scss setf scss
|
||||||
|
|
||||||
|
@@ -433,6 +433,7 @@ let s:filename_checks = {
|
|||||||
\ 'scilab': ['file.sci', 'file.sce'],
|
\ 'scilab': ['file.sci', 'file.sce'],
|
||||||
\ 'screen': ['.screenrc', 'screenrc'],
|
\ 'screen': ['.screenrc', 'screenrc'],
|
||||||
\ 'sexplib': ['file.sexp'],
|
\ 'sexplib': ['file.sexp'],
|
||||||
|
\ 'scdoc': ['file.scd'],
|
||||||
\ 'scss': ['file.scss'],
|
\ 'scss': ['file.scss'],
|
||||||
\ 'sd': ['file.sd'],
|
\ 'sd': ['file.sd'],
|
||||||
\ 'sdc': ['file.sdc'],
|
\ 'sdc': ['file.sdc'],
|
||||||
|
@@ -755,6 +755,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 */
|
||||||
|
/**/
|
||||||
|
3285,
|
||||||
/**/
|
/**/
|
||||||
3284,
|
3284,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user