mirror of
https://github.com/neovim/neovim.git
synced 2024-12-31 17:13:26 -07:00
vim-patch:8.2.4849: Gleam filetype not detected (#18326)
Problem: Gleam filetype not detected.
Solution: Add a pattern for Gleam files. (Mathias Jean Johansen,
closes vim/vim#10326)
917c32c4f7
This commit is contained in:
parent
88411613e2
commit
872622bcdb
@ -715,6 +715,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
|
||||
|
||||
|
@ -241,6 +241,7 @@ local extension = {
|
||||
gmi = "gemtext",
|
||||
gemini = "gemtext",
|
||||
gift = "gift",
|
||||
gleam = "gleam",
|
||||
glsl = "glsl",
|
||||
gpi = "gnuplot",
|
||||
gnuplot = "gnuplot",
|
||||
|
@ -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'],
|
||||
|
Loading…
Reference in New Issue
Block a user