aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir
diff options
context:
space:
mode:
authorGregory Anders <8965202+gpanders@users.noreply.github.com>2024-07-22 17:28:05 -0500
committerGitHub <noreply@github.com>2024-07-23 06:28:05 +0800
commit79d492a4218ee6b4da5becbebb712a0f1f65d0f5 (patch)
tree048bfad3f00cef2802180012f4de172eda19f89d /test/old/testdir
parentf93ecd2760f5859fd5eeec28c7c2196ece98e9a1 (diff)
downloadrneovim-79d492a4218ee6b4da5becbebb712a0f1f65d0f5.tar.gz
rneovim-79d492a4218ee6b4da5becbebb712a0f1f65d0f5.tar.bz2
rneovim-79d492a4218ee6b4da5becbebb712a0f1f65d0f5.zip
vim-patch:9.1.0610: filetype: OpenGL Shading Language files are not detected (#29831)
Problem: filetype: OpenGL Shading Language files are not detected Solution: detect various file extensions as GLSL filetype, include indent and syntax script, do no longer recognize '*.comp' as Mason filetype (Gregory Anders) closes: vim/vim#15317 https://github.com/vim/vim/commit/e4b991ed36f96dd01c6d75e46a04fd1a99180e58
Diffstat (limited to 'test/old/testdir')
-rw-r--r--test/old/testdir/test_filetype.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim
index c004c4bae3..1d507af17c 100644
--- a/test/old/testdir/test_filetype.vim
+++ b/test/old/testdir/test_filetype.vim
@@ -296,7 +296,7 @@ func s:GetFilenameChecks() abort
\ 'gitsendemail': ['.gitsendemail.msg.xxxxxx'],
\ 'gkrellmrc': ['gkrellmrc', 'gkrellmrc_x'],
\ 'gleam': ['file.gleam'],
- \ 'glsl': ['file.glsl'],
+ \ 'glsl': ['file.glsl', 'file.vert', 'file.tesc', 'file.tese', 'file.geom', 'file.frag', 'file.comp', 'file.rgen', 'file.rmiss', 'file.rchit', 'file.rahit', 'file.rint', 'file.rcall'],
\ 'gn': ['file.gn', 'file.gni'],
\ 'gnash': ['gnashrc', '.gnashrc', 'gnashpluginrc', '.gnashpluginrc'],
\ 'gnuplot': ['file.gpi', '.gnuplot', 'file.gnuplot', '.gnuplot_history'],
@@ -433,7 +433,7 @@ func s:GetFilenameChecks() abort
\ 'map': ['file.map'],
\ 'maple': ['file.mv', 'file.mpl', 'file.mws'],
\ 'markdown': ['file.markdown', 'file.mdown', 'file.mkd', 'file.mkdn', 'file.mdwn', 'file.md'],
- \ 'mason': ['file.mason', 'file.mhtml', 'file.comp'],
+ \ 'mason': ['file.mason', 'file.mhtml'],
\ 'master': ['file.mas', 'file.master'],
\ 'matlab': ['file.m'],
\ 'maxima': ['file.demo', 'file.dmt', 'file.dm1', 'file.dm2', 'file.dm3',