forked from aniani/vim
patch 8.2.4849: Gleam filetype not detected
Problem: Gleam filetype not detected. Solution: Add a pattern for Gleam files. (Mathias Jean Johansen, closes #10326)
This commit is contained in:
committed by
Bram Moolenaar
parent
ee44603069
commit
917c32c4f7
@@ -719,6 +719,9 @@ au BufNewFile,BufRead *.git/*
|
||||
" Gkrellmrc
|
||||
au BufNewFile,BufRead gkrellmrc,gkrellmrc_? setf gkrellmrc
|
||||
|
||||
" Gleam
|
||||
au BufNewFile,BufRead *.gleam setf gleam
|
||||
|
||||
" GLSL
|
||||
au BufNewFile,BufRead *.glsl setf glsl
|
||||
|
||||
|
@@ -211,6 +211,7 @@ let s:filename_checks = {
|
||||
\ 'gitrebase': ['git-rebase-todo'],
|
||||
\ 'gitsendemail': ['.gitsendemail.msg.xxxxxx'],
|
||||
\ 'gkrellmrc': ['gkrellmrc', 'gkrellmrc_x'],
|
||||
\ 'gleam': ['file.gleam'],
|
||||
\ 'glsl': ['file.glsl'],
|
||||
\ 'gnash': ['gnashrc', '.gnashrc', 'gnashpluginrc', '.gnashpluginrc'],
|
||||
\ 'gnuplot': ['file.gpi', '.gnuplot'],
|
||||
|
@@ -746,6 +746,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
4849,
|
||||
/**/
|
||||
4848,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user