mirror of
https://github.com/vim/vim
synced 2025-03-20 08:45:11 +01:00
Problem: filetype: tera files not detected Solution: detect '*.tera' files as tera filetype, include a simple filetype plugin (MuntasirSZN) closes: #16806 Signed-off-by: MuntasirSZN <muntasir.joypurhat@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
13 lines
314 B
VimL
13 lines
314 B
VimL
" Vim filetype plugin file
|
|
" Language: Tera
|
|
" Maintainer: Muntasir Mahmud <muntasir.joypurhat@gmail.com>
|
|
" Last Change: 2025 Mar 06
|
|
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal commentstring={#\ %s\ #}
|
|
|
|
let b:undo_ftplugin = "setlocal commentstring<"
|