mirror of
https://github.com/vim/vim.git
synced 2026-07-12 22:19:25 +02:00
1f33732613
Normalize the 15 existing guards to the documented two-level form get(g:, 'X_recommended_style', get(g:, 'filetype_recommended_style', 1)): fix the two non-standard "!exists() || != 0" guards (python, arduino) and tolk's wrong fallback variable, and convert the simple one-level guards. Add the guard to filetype plugins that set stylistic indentation/format options without one: aap, abap, ada, cabal, cobol, elixir, falcon, graphql, heex, idris2, mermaid, occam, racket, scala, swift, tera. Settings that are required rather than stylistic are left untouched, e.g. make/gomod/scdoc (mandatory tabs), chatito and vroom (indent mandated by the format), and the textwidth/formatoptions cases in gitcommit/help/ jjdescription. Supported by AI. fixes: #20036 closes: #20650 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
42 lines
1.3 KiB
VimL
42 lines
1.3 KiB
VimL
" Vim filetype plugin file
|
|
" Language: Tera
|
|
" Maintainer: Muntasir Mahmud <muntasir.joypurhat@gmail.com>
|
|
" Last Change: 2025 Mar 08
|
|
" 2025 Apr 16 by Vim Project (set 'cpoptions' for line continuation, #17121)
|
|
" 2026 Jun 27 by Vim Project (add recommended style guard)
|
|
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
let s:cpo_save = &cpo
|
|
set cpo&vim
|
|
|
|
setlocal autoindent
|
|
|
|
setlocal commentstring={#\ %s\ #}
|
|
setlocal comments=s:{#,e:#}
|
|
|
|
if exists("loaded_matchit")
|
|
let b:match_ignorecase = 0
|
|
let b:match_words = '{#:##\|#},{% *if:{% *else\>:{% *elif\>:{% *endif %},{% *for\>:{% *endfor %},{% *macro\>:{% *endmacro %},{% *block\>:{% *endblock %},{% *filter\>:{% *endfilter %},{% *set\>:{% *endset %},{% *raw\>:{% *endraw %},{% *with\>:{% *endwith %}'
|
|
endif
|
|
|
|
setlocal includeexpr=substitute(v:fname,'\\([^.]*\\)$','\\1','g')
|
|
setlocal suffixesadd=.tera
|
|
|
|
if get(g:, 'tera_recommended_style',
|
|
\ get(g:, 'filetype_recommended_style', 1))
|
|
setlocal expandtab
|
|
setlocal shiftwidth=2
|
|
setlocal softtabstop=2
|
|
endif
|
|
|
|
let b:undo_ftplugin = "setlocal autoindent< commentstring< comments< " ..
|
|
\ "includeexpr< suffixesadd< expandtab< shiftwidth< softtabstop<"
|
|
let b:undo_ftplugin .= "|unlet! b:match_ignorecase b:match_words"
|
|
|
|
let &cpo = s:cpo_save
|
|
unlet s:cpo_save
|