1
0
forked from aniani/vim

patch 9.1.0236: filetype: texlua files are not recognized

Problem:  filetype: texlua files are not recognized
Solution: Add '*.tlu' pattern for texlua files (Wu, Zhenyu)

Reference: https://github.com/TeX-Live/texdoc/tree/master/script

closes: #14357

Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Wu, Zhenyu
2024-03-31 19:02:26 +02:00
committed by Christian Brabandt
parent 4ff83b904e
commit a75f4791b1
3 changed files with 5 additions and 3 deletions

View File

@@ -1241,8 +1241,8 @@ au BufNewFile,BufRead *.lot,*.lotos setf lotos
" Lout (also: *.lt)
au BufNewFile,BufRead *.lou,*.lout setf lout
" Lua
au BufNewFile,BufRead *.lua setf lua
" Lua, Texlua
au BufNewFile,BufRead *.lua,*.tlu setf lua
" Luau
au BufNewFile,BufRead *.luau setf luau