mirror of
https://github.com/vim/vim.git
synced 2026-07-08 03:54:10 +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>
28 lines
892 B
VimL
28 lines
892 B
VimL
" This source file is part of the Swift.org open source project
|
|
"
|
|
" Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors
|
|
" Licensed under Apache License v2.0 with Runtime Library Exception
|
|
"
|
|
" See https://swift.org/LICENSE.txt for license information
|
|
" See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
"
|
|
" Vim maintainer: Emir SARI <bitigchi@me.com>
|
|
" Last Change: 2021 Jan 08
|
|
" 2026 Jun 27 by Vim Project (add recommended style guard)
|
|
|
|
" Only do this when not done yet for this buffer
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
let b:undo_ftplugin = "setlocal comments< expandtab< tabstop< shiftwidth< smartindent<"
|
|
|
|
setlocal comments=s1:/*,mb:*,ex:*/,:///,://
|
|
if get(g:, 'swift_recommended_style',
|
|
\ get(g:, 'filetype_recommended_style', 1))
|
|
setlocal expandtab
|
|
setlocal sw=4 sts=4
|
|
endif
|
|
setlocal smartindent
|