]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime: Remove fallback :CompilerSet definition from compiler plugins
authorDoug Kearns <dougkearns@gmail.com>
Thu, 4 Apr 2024 20:00:58 +0000 (22:00 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 4 Apr 2024 20:00:58 +0000 (22:00 +0200)
The :CompilerSet command was added in version Vim 6.4 which was released
twenty years ago.  Other runtime files do not support versions of that
vintage so it is reasonable to remove this fallback command definition
now.

closes: #14399

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
105 files changed:
runtime/compiler/ant.vim
runtime/compiler/bcc.vim
runtime/compiler/bdf.vim
runtime/compiler/cargo.vim
runtime/compiler/checkstyle.vim
runtime/compiler/cm3.vim
runtime/compiler/context.vim
runtime/compiler/cs.vim
runtime/compiler/csslint.vim
runtime/compiler/cucumber.vim
runtime/compiler/dart.vim
runtime/compiler/dart2js.vim
runtime/compiler/dart2native.vim
runtime/compiler/dartanalyser.vim
runtime/compiler/dartdevc.vim
runtime/compiler/dartdoc.vim
runtime/compiler/dartfmt.vim
runtime/compiler/decada.vim
runtime/compiler/dot.vim
runtime/compiler/dotnet.vim
runtime/compiler/erlang.vim
runtime/compiler/eruby.vim
runtime/compiler/eslint.vim
runtime/compiler/fbc.vim
runtime/compiler/fortran_F.vim
runtime/compiler/fortran_cv.vim
runtime/compiler/fortran_elf90.vim
runtime/compiler/fortran_g77.vim
runtime/compiler/fortran_lf95.vim
runtime/compiler/fpc.vim
runtime/compiler/g95.vim
runtime/compiler/gawk.vim
runtime/compiler/gcc.vim
runtime/compiler/gfortran.vim
runtime/compiler/gjs.vim
runtime/compiler/gm2.vim
runtime/compiler/gnat.vim
runtime/compiler/go.vim
runtime/compiler/haml.vim
runtime/compiler/hare.vim
runtime/compiler/hp_acc.vim
runtime/compiler/icc.vim
runtime/compiler/icon.vim
runtime/compiler/ifort.vim
runtime/compiler/intel.vim
runtime/compiler/irix5_c.vim
runtime/compiler/irix5_cpp.vim
runtime/compiler/javac.vim
runtime/compiler/jest.vim
runtime/compiler/jikes.vim
runtime/compiler/jjs.vim
runtime/compiler/jshint.vim
runtime/compiler/jsonlint.vim
runtime/compiler/mcs.vim
runtime/compiler/mips_c.vim
runtime/compiler/mipspro_c89.vim
runtime/compiler/mipspro_cpp.vim
runtime/compiler/modelsim_vcom.vim
runtime/compiler/msbuild.vim
runtime/compiler/msvc.vim
runtime/compiler/neato.vim
runtime/compiler/ocaml.vim
runtime/compiler/onsgmls.vim
runtime/compiler/pbx.vim
runtime/compiler/perl.vim
runtime/compiler/perlcritic.vim
runtime/compiler/php.vim
runtime/compiler/podchecker.vim
runtime/compiler/powershell.vim
runtime/compiler/pylint.vim
runtime/compiler/pyunit.vim
runtime/compiler/raco.vim
runtime/compiler/racomake.vim
runtime/compiler/racosetup.vim
runtime/compiler/racotest.vim
runtime/compiler/rake.vim
runtime/compiler/rhino.vim
runtime/compiler/rspec.vim
runtime/compiler/rst.vim
runtime/compiler/rubocop.vim
runtime/compiler/ruby.vim
runtime/compiler/rubyunit.vim
runtime/compiler/rustc.vim
runtime/compiler/sass.vim
runtime/compiler/se.vim
runtime/compiler/shellcheck.vim
runtime/compiler/sml.vim
runtime/compiler/spectral.vim
runtime/compiler/splint.vim
runtime/compiler/standard.vim
runtime/compiler/stylelint.vim
runtime/compiler/tcl.vim
runtime/compiler/tex.vim
runtime/compiler/tidy.vim
runtime/compiler/ts-node.vim
runtime/compiler/tsc.vim
runtime/compiler/typedoc.vim
runtime/compiler/xbuild.vim
runtime/compiler/xmllint.vim
runtime/compiler/xmlwf.vim
runtime/compiler/xo.vim
runtime/compiler/yamllint.vim
runtime/compiler/zig.vim
runtime/compiler/zsh.vim
runtime/doc/usr_51.txt

index 0605c69fab4eb7659d2cfc38519a7267b9cabd8e..6219b01c363b8482e089fbf78562abde9458d721 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:    ant
 " Maintainer:  Johannes Zellner <johannes@zellner.org>
 " Last Change: Mi, 13 Apr 2005 22:50:07 CEST
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
     finish
 endif
 let current_compiler = "ant"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 5bd284a581c2f8c5d726b09624798614c32a10e3..2d9d4fbb36b23bb16677cf55ee5d4c3a1baaf961 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:            bcc - Borland C
 " Maintainer:  Emile van Raaij (eraaij@xs4all.nl)
 " Last Change: 2004 Mar 27
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "bcc"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 " A workable errorformat for Borland C
 CompilerSet errorformat=%*[^0-9]%n\ %f\ %l:\ %m
 
index 7e08cdddaa4c7c72638f0b870e585d2929ef9f93..2aaa93bc279e4b25f9a0c95aa503e81ab5d4db1e 100644 (file)
@@ -3,6 +3,7 @@
 " Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
 " Contributors:         Enno Nagel
 " Last Change:          2024 Mar 29
+"                       2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -12,10 +13,6 @@ let current_compiler = "bdf"
 let s:cpo_save = &cpo
 set cpo-=C
 
-if exists(":CompilerSet") != 2 " Older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=bdftopcf\ $*
 CompilerSet errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m,
       \%-Z%p^,
index aa9b01e93c03d9854a98c7239f70304729029d38..cae2e517e354bc1a4959ee4b7d88ae6d4e6315af 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:         Cargo Compiler
 " Maintainer:       Damien Radtke <damienradtke@gmail.com>
 " Latest Revision:  2023-09-11
+"                   2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " For bugs, patches and license go to https://github.com/rust-lang/rust.vim
 
 if exists('current_compiler')
index 4ebd9e15b536f9cdd09b169a50672cb6512c82b3..3c17ee45bff9357922c2eb54e9fb1522dee07ac4 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Checkstyle
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Aug 2
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "checkstyle"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 3de51282e6836de5f41ffa8cb8cd5f7f1a6a8e7f..0ec360855c618c264535af87cd42803efa253905 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Critical Mass Modula-3 Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2021 Apr 08
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "cm3"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 512f81cbedeb5c3a6cf27692c52fa555dc897946..093943e22d0df9e75b93e2401712b1a4735b55ca 100644 (file)
@@ -5,6 +5,7 @@ vim9script
 # Former Maintainers: Nikolai Weibull <now@bitwi.se>
 # Contributors:       Enno Nagel
 # Last Change:        2024 Mar 29
+#                     2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("g:current_compiler")
   finish
@@ -12,10 +13,6 @@ endif
 
 import autoload '../autoload/context.vim'
 
-if exists(":CompilerSet") != 2 # Older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 g:current_compiler = 'context'
 
 if get(b:, 'context_ignore_makefile', get(g:, 'context_ignore_makefile', 0)) ||
index 4f6dd3cdfd64192141952534c2c6b3e92dcb8775..123dff854fab7f1c160ce456bfd9ffc29aa3a840 100644 (file)
@@ -3,6 +3,7 @@
 " Maintainer:             Yichao Zhou (broken.zhou@gmail.com)
 " Previous Maintainer:    Joseph H. Yao (hyao@sina.com)
 " Last Change:            Jul 22, 2019
+"                         2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -11,10 +12,6 @@ let current_compiler = "cs"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat&
 CompilerSet errorformat+=%f(%l\\,%v):\ %t%*[^:]:\ %m,
             \%trror%*[^:]:\ %m,
index 14c4289a249abd7731f2a693b76cdbb813a9cee4..608cc74864628a3769c4c77cc4d3ad7fbf031195 100644 (file)
@@ -1,16 +1,13 @@
 " Vim compiler file
 " Compiler:    csslint for CSS
-" Maintainer: Daniel Moch <daniel@danielmoch.com>
-" Last Change: 2016 May 21
+" Maintainer:  Daniel Moch <daniel@danielmoch.com>
+" Last Change: 2016 May 21
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "csslint"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=csslint\ --format=compact
 CompilerSet errorformat=%-G,%-G%f:\ lint\ free!,%f:\ line\ %l\\,\ col\ %c\\,\ %trror\ -\ %m,%f:\ line\ %l\\,\ col\ %c\\,\ %tarning\ -\ %m,%f:\ line\ %l\\,\ col\ %c\\,\ %m
index 17ce3627c191e77b025b3ecc7755d1e685cf0ce6..8089a5ee5c60da906ddc6624f5d134468b9b6639 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:    Cucumber
 " Maintainer:  Tim Pope <vimNOSPAM@tpope.org>
 " Last Change: 2016 Aug 29
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "cucumber"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index f9ebfe1b2757b3b21147e56594deef47bee9c104..9577236bee8fd153b882ff529e5a9b660a220546 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Dart VM
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 May 08
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "dart"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index b6a4e4d530a361d22a0574f4c9036f7897b82920..a05dead2a960b9e6a588c0fe7889247fa9a5cbd8 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Dart to JavaScript Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 May 08
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "dart2js"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 51bdab0cc36b044ebdae4e32d1c861772fbb35e8..6604fc4bd4cb28bc3873f834c3a62c4e299b7a43 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Dart to Native Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 May 08
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "dart2native"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index e691d80b61f101f7d906f774629e63b019e8be10..48a976a01672c68e48eb54e3db226ef67db3435c 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Dart Analyzer
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 May 08
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "dartanalyzer"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index e8d1988ed6514e97615b083389e35d47274033fe..16e4ed7cedae1098f1b5ee255c18057df4d012f2 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Dart Development Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 May 08
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "dartdevc"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 26b38d8dd455db5a3ac899fcc13241c418771bb2..78f0d241a453e728352885747429c93d468692cf 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Dart Documentation Generator
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 May 08
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "dartdoc"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 2e4ab02ad3338ee6a9db174d5744b6a5beed793a..d204df8a73eba071c38c39e5c79a17e496dcb36c 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Dart Formatter
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 May 08
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "dartfmt"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 0bf5487c895d462d8d521a4ca5fae128e910965d..11b0cb412aed837339780b37895c6f706269afd8 100644 (file)
@@ -14,6 +14,7 @@
 "               08.09.2006 MK Correct double load protection.
 "    Help Page: compiler-decada
 "------------------------------------------------------------------------------
+" Last Change: 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if (exists("current_compiler") && current_compiler == "decada") || version < 700
    finish
@@ -34,13 +35,6 @@ if !exists("g:decada")
    call g:decada.Set_Session ()
 endif
 
-if exists(":CompilerSet") != 2
-   "
-   " plugin loaded by other means then the "compiler" command
-   "
-   command -nargs=* CompilerSet setlocal <args>
-endif
-
 execute "CompilerSet makeprg="     . escape (g:decada.Make_Command, ' ')
 execute "CompilerSet errorformat=" . escape (g:decada.Error_Format, ' ')
 
index 773a6fb269924541719e2a2a42034da0e6c40bcb..145411ebd3a0f89fe467fc09838e34318077bcc8 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:     ATT dot
 " Maintainer:  Marcos Macedo <bar4ka@bol.com.br>
 " Last Change: 2024 March 21
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "dot"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=dot\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
 " matches error messages as below skipping final part after line number
 " Error: ./file.dot: syntax error in line 1 near 'rankdir'
index ac6408466342af16d76b281eb9f5efe19e3cd368..1290357221e0e5b2142ebf1bae1fdc020c7d9654 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:            dotnet build (.NET CLI)
 " Maintainer:          Nick Jensen <nickspoon@gmail.com>
 " Last Change:         2022-12-06
+"                      2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " License:             Vim (see :h license)
 " Repository:          https://github.com/nickspoons/vim-cs
 
@@ -10,10 +11,6 @@ if exists("current_compiler")
 endif
 let current_compiler = "dotnet"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index e22887e05e83ae78e1b7282f6af6b0133414bfdb..b30b5c11e7c91171363673e5d36d4290c83a99b0 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:     Erlang
 " Maintainer:  Dmitry Vasiliev <dima at hlabs dot org>
 " Last Change: 2019 Jul 23
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
index a81a3f3b77658dd8eacc0b024a90519799d2accc..815d082f8691072f28fb8ee07ebca931a9e220ea 100644 (file)
@@ -3,17 +3,13 @@
 " Maintainer:          Doug Kearns <dougkearns@gmail.com>
 " URL:                 https://github.com/vim-ruby/vim-ruby
 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
-" Last Change:         2018 Jan 25
+" Last Change:         2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "eruby"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 7d57acbdf4165aea59596f70c81eab7df9e7bbf5..db7a665991e610b28312b2d289b909f28e77d803 100644 (file)
@@ -2,15 +2,12 @@
 " Compiler:    ESLint for JavaScript
 " Maintainer:  Romain Lafourcade <romainlafourcade@gmail.com>
 " Last Change: 2020 August 20
+"             2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "eslint"
 
-if exists(":CompilerSet") != 2
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=npx\ eslint\ --format\ compact
 CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m,%-G%.%#
index 1c29392da889adfd55b6ace67b5d6c3ccfd5cba6..afedc32dff752c5aa8f07549dcf5d78626e0c60b 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    FreeBASIC Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2015 Jan 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "fbc"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index d9cb47cc1f3f4a074502255527365e60365c109a..7f6ec818e050bb62552f8b53fc06c21e67eba9e3 100644 (file)
@@ -3,17 +3,14 @@
 " URL:         http://www.unb.ca/chem/ajit/compiler/fortran_F.vim
 " Maintainer:  Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/>
 " Version:     0.2
-" Last Change: 2004 Mar 27
+" Last Change: 2004 Mar 27
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "fortran_F"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cposet=&cpoptions
 set cpoptions-=C
 
index bc217bdc66512d0607af1ac288c3a9cb5dff6097..ea46d99af4677985a8c844ca9eefc830f465966b 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:    Compaq Visual Fortran
 " Maintainer:  Joh.-G. Simon (johann-guenter.simon@linde-le.com)
 " Last Change: 11/05/2002
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "fortran_cv"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cposet = &cpoptions
 set cpoptions-=C
 
index 34c33cfaf87fe9f0e4727ae954ce0b6d2169377c..903701e8e6120cb6371d757e91223ad134e5f2af 100644 (file)
@@ -4,17 +4,14 @@
 " URL:         http://www.unb.ca/chem/ajit/compiler/fortran_elf90.vim
 " Maintainer:  Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/>
 " Version:     0.2
-" Last Change: 2004 Mar 27
+" Last Change: 2004 Mar 27
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "fortran_elf90"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cposet=&cpoptions
 set cpoptions-=C
 
index 744ce6a334e8928898de0d6bf2214e53895077df..dcac2a7c9a89ad9bdb90b0232797d3b22f17b2d1 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:     g77 (GNU Fortran)
 " Maintainer:   Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
 " Last Change:  $Date: 2004/06/13 18:17:36 $
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " $Revision: 1.1 $
 
 if exists("current_compiler")
@@ -9,10 +10,6 @@ if exists("current_compiler")
 endif
 let current_compiler = "fortran_g77"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 685fee7b4aea0708318e61524de5df4a3de37eed..2cb71589b29f0bb730e163d34d494f93e49c7593 100644 (file)
@@ -3,17 +3,14 @@
 " URL:         http://www.unb.ca/chem/ajit/compiler/fortran_lf95.vim
 " Maintainer:  Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/>
 " Version:     0.2
-" Last Change: 2004 Mar 27
+" Last Change: 2004 Mar 27
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "fortran_lf95"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cposet=&cpoptions
 set cpoptions-=C
 
index de8e2fe3dc84a3e0b348384baceea9ced2a9b6b1..0d321ab4c7175b487f8bc971b353d034149e5c91 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:     FPC 2.1
 " Maintainer:   Jaroslaw Blasiok <jaro3000@o2.pl>
 " Last Change:  2005 October 07
+"               2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "fpc"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 " NOTE: compiler must be run with -vb to write whole source path, not only file
 " name.
 CompilerSet errorformat=%f(%l\\,%c)\ %m
index ecb3212cbe6736e66418b9e87cd076087cf09dc7..e0b3a688f2bc3a975665f18b83617b9306678711 100644 (file)
@@ -2,6 +2,7 @@
 " Maintainer: H Xu <xuhdev@gmail.com>
 " Version: 0.1.3
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " Homepage: http://www.vim.org/scripts/script.php?script_id=3492
 "           https://bitbucket.org/xuhdev/compiler-g95.vim
 " License: Same as Vim
@@ -13,10 +14,6 @@ let current_compiler = 'g95'
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=
             \%AIn\ file\ %f:%l,
             \%-C%p1,
index a109eb8642c3bf953cc5f7d4d6f0684c4634a048..f2a360d5f32c87b6929068f3e93c4823f9dd1957 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    GNU Awk
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Feb 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "gawk"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 30e5149f9f1faf013ced7d30bebf0a142890cdb4..7b6ebb98f4b120640fe9888785078f8a7e49ddf0 100644 (file)
@@ -1,10 +1,11 @@
 " Vim compiler file
-" Compiler:             GNU C Compiler
-" Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
-" Latest Revision:      2010-10-14
-"                      changed pattern for entering/leaving directories
-"                      by Daniel Hahler, 2019 Jul 12
-"                      added line suggested by Anton Lindqvist 2016 Mar 31
+" Compiler:            GNU C Compiler
+" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
+" Last Change:         2010 Oct 14
+"                      changed pattern for entering/leaving directories
+"                      by Daniel Hahler, 2019 Jul 12
+"                      added line suggested by Anton Lindqvist 2016 Mar 31
+"                      2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
index 1e4e5cf4f4956ede79ea19edf9795a0898c5a768..1fea3bcb188814921476448fac2d9e2c78f32f16 100644 (file)
@@ -2,6 +2,7 @@
 " Maintainer: H Xu <xuhdev@gmail.com>
 " Version: 0.1.3
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " Homepage: http://www.vim.org/scripts/script.php?script_id=3496
 "           https://bitbucket.org/xuhdev/compiler-gfortran.vim
 " License: Same as Vim
@@ -13,10 +14,6 @@ let current_compiler = 'gfortran'
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=
             \%A%f:%l.%c:,
             \%-Z%trror:\ %m,
index e0337640307c20af96e4120d8c787a3ab32e285c..b1be8cf3e6b728fad5e97d729ad9791e0179aacb 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    GJS (Gnome JavaScript Bindings)
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 Jul 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "gjs"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 5053912200d82d15501648679fcdd10b9e1182ff..954da9d0e74d4d3c3834e9b57ce0a700f9fd0c88 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    GNU Modula-2 Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2024 Jan 04
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "gm2"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 3ad1eb4e3f7bb53f193d5f02dc6dab3e53e13685..086edbede342ba060e401a5be0b5f8b596e823f5 100644 (file)
@@ -52,13 +52,6 @@ if !exists("g:gnat")
    call g:gnat.Set_Session ()
 endif
 
-if exists(":CompilerSet") != 2
-   "
-   " plugin loaded by other means then the "compiler" command
-   "
-   command -nargs=* CompilerSet setlocal <args>
-endif
-
 execute "CompilerSet makeprg="     . escape (g:gnat.Get_Command('Make'), ' ')
 execute "CompilerSet errorformat=" . escape (g:gnat.Error_Format, ' ')
 
index cf638f23d6067b1fe865f4ec18688d6efbeef442..eef897f4a262b78e6f0b60180ae983b5af5fc918 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    Go
 " Maintainer:  David Barnett (https://github.com/google/vim-ft-go)
 " Last Change: 2014 Aug 16
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists('current_compiler')
   finish
index 9464c3dc8598d5c2d54af9e35bedc03935f63f8d..99c171d76c2e8096d3f79dc4b123ad3a5de7caa0 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:    Haml
 " Maintainer:  Tim Pope <vimNOSPAM@tpope.org>
 " Last Change: 2016 Aug 29
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "haml"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index c0fa68cc00852790e878fb188833a1a35a2c146b..5bece78ce9ea548d8b0fef810d4b6d656ab064fd 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler: Hare Compiler
 " Maintainer: Amelia Clarke <me@rsaihe.dev>
 " Last Change: 2022-09-21
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("g:current_compiler")
   finish
index 15d5ce5f190c8e571cd9b691ac94b6a476b546ed..f6ccc57c73b6c5c7ac7079f78eb93fead1917b6e 100644 (file)
@@ -3,6 +3,7 @@
 " Maintainer:  Matthias Ulrich <matthias-ulrich@web.de>
 " URL:          http://www.subhome.de/vim/hp_acc.vim
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 "
 "  aCC --version says: "HP ANSI C++ B3910B A.03.13"
 "  This compiler has been tested on:
@@ -22,10 +23,6 @@ let current_compiler = "hp_acc"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=%A%trror\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m,
          \%A%tarning\ (suggestion)\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m\ %#,
          \%A%tarning\ %n\:\ \"%f\"\\,\ line\ %l\ \#\ %m\ %#,
index 751fba65c7c60408392d3d90201bab592ac43c85..37958f1c944dff2227464a62a9e4b94c1332ef97 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:            icc - Intel C++
 " Maintainer: Peter Puck <PtrPck@netscape.net>
 " Last Change: 2004 Mar 27
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "icc"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 " I think that Intel is calling the compiler icl under Windows
 
 CompilerSet errorformat=%-Z%p^,%f(%l):\ remark\ #%n:%m,%f(%l)\ :\ (col.\ %c)\ remark:\ %m,%E%f(%l):\ error:\ %m,%E%f(%l):\ error:\ #%n:\ %m,%W%f(%l):\ warning\ #%n:\ %m,%W%f(%l):\ warning:\ %m,%-C%.%#
index 40f67930f7f200fb7858da39b720b54db03dd6f7..8b46af2a135c0def81365c23bea6e85b10d26ebd 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Icon Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2022 Jun 16
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "icont"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 3a60d0cd12a03403c7070adfdf84893307878c16..8c58ba685dca59e613c758c59a95e1fe7ad474bd 100644 (file)
@@ -2,6 +2,7 @@
 " Maintainer: H Xu <xuhdev@gmail.com>
 " Version: 0.1.1
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " Homepage: http://www.vim.org/scripts/script.php?script_id=3497
 "           https://bitbucket.org/xuhdev/compiler-ifort.vim
 " License: Same as Vim
@@ -13,10 +14,6 @@ let current_compiler = 'ifort'
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=
             \%A%f(%l):\ %trror\ \#%n:\ %m,
             \%A%f(%l):\ %tarning\ \#%n:\ %m,
index 254d13b6d8456c8d9313b4c4a2ebd3e92bc0b331..cde62b1c48f89cefe9db030684282933aa377a4c 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:     Intel C++ 7.1
 " Maintainer:   David Harrison <david_jr@users.sourceforge.net>
 " Last Change:  2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -10,10 +11,6 @@ let current_compiler = "intel"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=%E%f(%l):\ error:\ %m,
                    \%W%f(%l):\ warning:\ %m,
                    \%I%f(%l):\ remark\ #%n:\ %m,
index f440e74f05d044794dcb8da1417b466ba2511789..f70bfb1ea7c36fe0109a699145ba72ebd3e5496a 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    SGI IRIX 5.3 cc
 " Maintainer:  David Harrison <david_jr@users.sourceforge.net>
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -10,10 +11,6 @@ let current_compiler = "irix5_c"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=\%Ecfe:\ Error:\ %f\\,\ line\ %l:\ %m,
                     \%Wcfe:\ Warning:\ %n:\ %f\\,\ line\ %l:\ %m,
                     \%Wcfe:\ Warning\ %n:\ %f\\,\ line\ %l:\ %m,
index 0112dc1cbc93e7355a36a0d56cfa234bc1934dc2..85ab8c67f2bcf6da1a81e7b7e8ad2325d01684c3 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    SGI IRIX 5.3 CC or NCC
 " Maintainer:  David Harrison <david_jr@users.sourceforge.net>
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -10,10 +11,6 @@ let current_compiler = "irix5_cpp"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=%E\"%f\"\\,\ line\ %l:\ error(%n):\ ,
                    \%E\"%f\"\\,\ line\ %l:\ error(%n):\ %m,
                    \%W\"%f\"\\,\ line\ %l:\ warning(%n):\ %m,
index 8507efd67c765cba018e2abd8ba1903a9ba093aa..f5fe84124f51fe1b00983c7cb50c846478109e71 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Java Development Kit Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 Oct 21
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "javac"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index a4bb549de18cbea051d8df1e7c48011da4326160..663123c30f1329a77410560a51e8a367bc378cac 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Jest
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2021 Nov 20
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "jest"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 2d4500e894f679d51c9c4cd955f82921bb257ff8..f12c2cf5f1a456ffd707bc9d3aa833ecc8a72d76 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    Jikes
 " Maintainer:  Dan Sharp <dwsharp at hotmail dot com>
 " Last Change: 2019 Jul 23
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " URL:         http://dwsharp.users.sourceforge.net/vim/compiler
 
 if exists("current_compiler")
@@ -9,10 +10,6 @@ if exists("current_compiler")
 endif
 let current_compiler = "jikes"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 " Jikes defaults to printing output on stderr
 CompilerSet makeprg=jikes\ -Xstdout\ +E\ \"%:S\"
 CompilerSet errorformat=%f:%l:%v:%*\\d:%*\\d:%*\\s%m
index 09a973683a17ee3d90807e5e8a6e1fcabbb7d1cd..543d9ca3d4731af0e28857259f3342054f51c17d 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Nashorn Shell
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2018 Jan 9
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "jjs"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 865591cd2bb5f4ec02c0faf41bf9034c36f2279e..9879ef49e526de83c477983ec6e9784b5471ac2e 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    JSHint
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 Jul 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "jshint"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 5466dcc7f4421b8ccb22e37169be9a71e2ea8fbc..6283b1b01fea8f2e1a5dad2c71270f1bac820100 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    JSON Lint
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 Jul 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "jsonlint"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 94a1848d4abb52b5b75d50a5ca8afe83530985b9..4d94f47cdc698cd3bcbfbfab1d78449ed3af53c1 100644 (file)
@@ -3,6 +3,7 @@
 " Maintainer:   Jarek Sobiecki <harijari@go2.pl>
 " Contributors: Peter Collingbourne and Enno Nagel
 " Last Change:  2024 Mar 29
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
index a0ebfe7ba2f483160f099896db0b84c37f3089a5..544f314a1a93a443a128e89d84dc54981700e9f3 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    SGI IRIX 6.5 MIPS C (cc)
 " Maintainer:  David Harrison <david_jr@users.sourceforge.net>
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -10,10 +11,6 @@ let current_compiler = "mips_c"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l,
                    \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l,
                    \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l,
index 20eb70d3fe1d0ede19b31489cb00209529cc439f..4d6bdabeef9b33db6763be1926bcd3e5ab68c1fd 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    SGI IRIX 6.5 MIPSPro C (c89)
 " Maintainer:  David Harrison <david_jr@users.sourceforge.net>
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -10,10 +11,6 @@ let current_compiler = "mipspro_c89"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l,
                    \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l,
                    \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l,
index 2f43af8455c498239f16fed5ac26e1e67ffa038c..9aac2a65646d5ed59ad32bec685070aad5437708 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    SGI IRIX 6.5 MIPSPro C++ (CC)
 " Maintainer:  David Harrison <david_jr@users.sourceforge.net>
 " Last Change: 2012 Apr 30
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -10,10 +11,6 @@ let current_compiler = "mipspro_cpp"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l,
                    \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l,
                    \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l,
index 184b403996bda83ee0ce57a32cb1f2867d0946f3..8c6b8063ad947410ba48313bafe1aaac01fe1afc 100644 (file)
@@ -3,6 +3,7 @@
 " Maintainer:  Paul Baleme <pbaleme@mail.com>
 " Contributors: Enno Nagel
 " Last Change: 2024 Mar 29
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " Thanks to:    allanherriman@hotmail.com
 
 if exists("current_compiler")
@@ -10,10 +11,6 @@ if exists("current_compiler")
 endif
 let current_compiler = "modelsim_vcom"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=vcom
 
 "setlocal errorformat=\*\*\ %tRROR:\ %f(%l):\ %m,%tRROR:\ %f(%l):\ %m,%tARNING\[%*[0-9]\]:\ %f(%l):\ %m,\*\*\ %tRROR:\ %m,%tRROR:\ %m,%tARNING\[%*[0-9]\]:\ %m
index 3652ca0e0412e01ca105bd31e8b858fa524e14d7..c871efaf3dd5d62fa543a8ff8486778b3f574e78 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    Microsoft Visual Studio C#
 " Maintainer:  Chiel ten Brinke (ctje92@gmail.com)
 " Last Change: 2013 May 13
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -10,10 +11,6 @@ let current_compiler = "msbuild"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=\ %#%f(%l\\\,%c):\ %m
 CompilerSet makeprg=msbuild\ /nologo\ /v:q\ /property:GenerateFullPaths=true
 
index 0d5660c1038a7fbd56db41a28f7f87cf8967a489..3d40de5b7f407fce617e5e24ceb36041c6a455f8 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    Microsoft Visual C
 " Maintainer:  The Vim Project <https://github.com/vim/vim>
 " Last Change: 2023 Aug 10
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " Former Maintainer:   Bram Moolenaar <Bram@vim.org>
 
 if exists("current_compiler")
index 102c16e72b5aab15c68f713265fd463990ea421a..0f36734130b28dfc8e4d1143de6b9d6d7799f896 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:     ATT neato
 " Maintainer:  Marcos Macedo <bar4ka@bol.com.br>
 " Last Change: 2024 March 21
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "neato"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=neato\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
 " matches error messages as below skipping final part after line number
 " Error: ./file.dot: syntax error in line 1 near 'rankdir'
index faa8af1f5f3b3878b32dff0c2ad6bef797bab558..754289fc146be96a0647bd03183a465b4ef70594 100644 (file)
@@ -3,6 +3,7 @@
 " Maintainer:  Markus Mottl <markus.mottl@gmail.com>
 " URL:         https://github.com/ocaml/vim-ocaml
 " Last Change:
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 "              2020 Mar 28 - Improved error format (Thomas Leonard)
 "              2017 Nov 26 - Improved error format (Markus Mottl)
 "              2013 Aug 27 - Added a new OCaml error format (Markus Mottl)
index 68925ef459dcdf1c97a58019e857ee0ece753b42..4306f99de5e0a79c2d9ca995350dd7baa0dcebda 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:    onsgmls
 " Maintainer:  Robert Rowsome <rowsome@wam.umd.edu>
 " Last Change: 2019 Jul 23
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "onsgmls"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 9e81ea7355541f84ab7658aa51425b8464359b7d..5a45f7ffe091879e17e4620fb325ec810df539e5 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:    Apple Project Builder
 " Maintainer:  Alexander von Below (public@vonBelow.Com)
 " Last Change: 2004 Mar 27
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
    finish
 endif
 let current_compiler = "pbx"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 " The compiler actually is gcc, so the errorformat is unchanged
 CompilerSet errorformat&
 
index 21e384fb8522a5e38a3441644e5e42e0cb4f1634..6aeaac3fa1856b38e3125093b8ff314370b548d3 100644 (file)
@@ -6,16 +6,13 @@
 " Bugs/requests: https://github.com/vim-perl/vim-perl/issues
 " License:       Vim License (see :help license)
 " Last Change:   2021 Nov 2
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "perl"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:savecpo = &cpo
 set cpo&vim
 
index cf0678eeb2a915d2c2ae9256b3f6c14e02be00ea..4b5f34dd2e0a5ae8cd37446b980dfae5b61d8967 100644 (file)
@@ -6,16 +6,13 @@
 " Bugs/requests: https://github.com/vim-perl/vim-perl/issues
 " License:       Vim License (see :help license)
 " Last Change:   2021 Oct 20
+"                2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "perlcritic"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 92f93b89fcb74120d26c974448b82ef895b315cf..f5d521098bbc76f3610b775bdd539b480efb1819 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    PHP CLI
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2013 Jun 25
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "php"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 2cd4e13660b9c0e49354d331c5cf854d8840caf5..20faaa4bcca4a99246b1b3b2d64657fcbd7168aa 100644 (file)
@@ -6,16 +6,13 @@
 " Bugs/requests: https://github.com/vim-perl/vim-perl/issues
 " License:       Vim License (see :help license)
 " Last Change:   2021 Oct 20
+"                2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "podchecker"
 
-if exists(":CompilerSet") != 2          " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 445a2f6d97b8178df1b847d2a9c3cf526eb1f5e8..4b1ce88e3d951a8d6da24a834855c96ce7f99475 100644 (file)
@@ -3,16 +3,13 @@
 " URL: https://github.com/PProvost/vim-ps1
 " Contributors: Enno Nagel
 " Last Change: 2024 Mar 29
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "powershell"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 93079ce61d53735a0061a76fad3b5d2c9b182cfd..14e9696dbb4c5dbf7e7d4a564b085d3029b940b2 100644 (file)
@@ -2,15 +2,12 @@
 " Compiler:    Pylint for Python
 " Maintainer: Daniel Moch <daniel@danielmoch.com>
 " Last Change: 2016 May 20
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "pylint"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=pylint\ --output-format=text\ --msg-template=\"{path}:{line}:{column}:{C}:\ [{symbol}]\ {msg}\"\ --reports=no
 CompilerSet errorformat=%A%f:%l:%c:%t:\ %m,%A%f:%l:\ %m,%A%f:(%l):\ %m,%-Z%p^%.%#,%-G%.%#
index 2a4ea92b6872a01a3695edb4c838a14d347f97d2..2368346dd20b9f645e461b1c57fac22f2dd316d6 100644 (file)
@@ -2,15 +2,12 @@
 " Compiler:    Unit testing tool for Python
 " Maintainer:  Max Ischenko <mfi@ukr.net>
 " Last Change: 2004 Mar 27
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "pyunit"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
 
index bd10859aa917a852f12dfa51114e006dec5d4888..d35d86b8c27c85b21eb8b55a50b4525426f467f8 100644 (file)
@@ -3,12 +3,9 @@
 " Maintainer:   D. Ben Knoble <ben.knoble+github@gmail.com>
 " URL:          https://github.com/benknoble/vim-racket
 " Last Change: 2022 Aug 12
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 let current_compiler = 'raco'
 
-if exists(":CompilerSet") != 2
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=raco
 CompilerSet errorformat=%f:%l:%c:%m
index dae95fec42f8938405cfe5ce7c2ee0246ae952f0..bd2c327037639b540ca294000748ee7bc9ace8f6 100644 (file)
@@ -3,12 +3,9 @@
 " Maintainer:   D. Ben Knoble <ben.knoble+github@gmail.com>
 " URL:          https://github.com/benknoble/vim-racket
 " Last Change: 2022 Aug 12
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 let current_compiler = 'racomake'
 
-if exists(":CompilerSet") != 2
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=raco\ make\ --\ %
 CompilerSet errorformat=%f:%l:%c:%m
index 1efe8a15a2e157f697021f36230b40af78db4f21..e16faf081a90232fbc0d6ee8ea30c5a23ccc02f2 100644 (file)
@@ -3,12 +3,9 @@
 " Maintainer:   D. Ben Knoble <ben.knoble+github@gmail.com>
 " URL:          https://github.com/benknoble/vim-racket
 " Last Change: 2022 Aug 12
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 let current_compiler = 'racosetup'
 
-if exists(":CompilerSet") != 2
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=raco\ setup
 CompilerSet errorformat=%f:%l:%c:%m
index d2a1a3c0f3929989e354f3a810c731588bed80e5..3ac11737d20bfe32e08cf8e484776624058f7815 100644 (file)
@@ -3,12 +3,9 @@
 " Maintainer:   D. Ben Knoble <ben.knoble+github@gmail.com>
 " URL:          https://github.com/benknoble/vim-racket
 " Last Change: 2022 Aug 12
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 let current_compiler = 'racotest'
 
-if exists(":CompilerSet") != 2
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=raco\ test\ %
 CompilerSet errorformat=location:%f:%l:%c
index 3d11a31f8951a2c6230cad409ab49cafaa3fb591..5b3c7f4092d1d8c355066076dc5a25dcd8442ab0 100644 (file)
@@ -4,16 +4,13 @@
 " URL:                 https://github.com/vim-ruby/vim-ruby
 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
 " Last Change:         2018 Mar 02
+"                      2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "rake"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 30f3dd32529d6061b09fb1fc5dc002893eb3cdba..b6fc9c8d8cea833be9dccd0dbad4a967562e5bb0 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Rhino Shell (JavaScript in Java)
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 Jul 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "rhino"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 0cfce04572ac791c8d8b0309febf9922b0625888..ee848f703af37079c2435f48c0350a129e722b76 100644 (file)
@@ -4,16 +4,13 @@
 " URL:                 https://github.com/vim-ruby/vim-ruby
 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
 " Last Change:         2018 Aug 07
+"                      2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "rspec"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 392bea6ae0a895ce1a877fe52ca0c9662e18c937..72b6a58b674cee6cfb30e5eb56334b7709a03820 100644 (file)
@@ -2,7 +2,8 @@
 " Compiler:             sphinx >= 1.0.8, http://www.sphinx-doc.org
 " Description:          reStructuredText Documentation Format
 " Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
-" Latest Revision:      2017-03-31
+" Last Change:          2017 Mar 31
+"                       2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -12,10 +13,6 @@ let current_compiler = "rst"
 let s:cpo_save = &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=
       \%f\\:%l:\ %tEBUG:\ %m,
       \%f\\:%l:\ %tNFO:\ %m,
index 7764b4ad20a97fb8b1dcf8eafd698578759fa544..9d2f01499f186baec987697be7e83166cb3ad4db 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    RuboCop
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 Jul 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "rubocop"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 82d4d1c8762b2990ad6ed49490fff6f92e148dea..70dff5bf240297db711751fe1d9f26ee7138b250 100644 (file)
@@ -5,16 +5,13 @@
 " URL:                 https://github.com/vim-ruby/vim-ruby
 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
 " Last Change:         2019 Jan 06
+"                      2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "ruby"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 48e8fa41abc5e4fde8165a05c6b9000682bd968f..e59873fa21d27b8f3a4c733cbec0e50d9024b127 100644 (file)
@@ -4,16 +4,13 @@
 " URL:                 https://github.com/vim-ruby/vim-ruby
 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
 " Last Change:         2014 Mar 23
+"                      2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "rubyunit"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index efcf24ed80096630d7aa3c6e61c63b776bdeaf48..b3c80919872bae76032ce13729c59f3c2ed27aa0 100644 (file)
@@ -14,10 +14,6 @@ let s:save_cpo = &cpo
 set cpo&vim
 " vint: +ProhibitAbbreviationOption
 
-if exists(":CompilerSet") != 2
-    command -nargs=* CompilerSet setlocal <args>
-endif
-
 if get(g:, 'rustc_makeprg_no_percent', 0)
     CompilerSet makeprg=rustc
 else
index 9c540ac4437241a1ff479814c32b48c5e1cf11da..d0ed65cfa559b12b2c41851da406ce407880f532 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:    Sass
 " Maintainer:  Tim Pope <vimNOSPAM@tpope.org>
 " Last Change: 2016 Aug 29
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "sass"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 38fd10c13125841ee4beaa3c2f9c2a5de1bacd84..c9332277e5bee98404054ec6faa5f0fa755fa9a8 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    se (Liberty Eiffel Compiler)
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2013 Jun 29
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "se"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 7550439aa2ca86dcf14542a92988bfc9703e5e1e..5eeddc69c1ffd151d91e60491a958f62ca62c577 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    ShellCheck
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Sep 4
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "shellcheck"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index a0b13b6c8adba7ac424b2f4c4463a3f270e1a5b7..e829e20e8c16d423f67960a30e027c042e85c414 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    SML/NJ Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2022 Feb 09
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "sml"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index bd13c51f4353d96383dcfee6c6ad7bbbbe5b8226..f1ea8653e54da3dc2c2e4d65bec2e8c29f7a39e4 100644 (file)
@@ -2,16 +2,13 @@
 " Compiler:    Spectral for YAML
 " Maintainer:  Romain Lafourcade <romainlafourcade@gmail.com>
 " Last Change: 2021 July 21
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
     finish
 endif
 let current_compiler = "spectral"
 
-if exists(":CompilerSet") != 2
-    command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=spectral\ lint\ %\ -f\ text
 CompilerSet errorformat=%f:%l:%c\ %t%.%\\{-}\ %m
 
index 3d7ada6d1dfa11d30b282cc78e206017c1e8f1fa..e00460149c2a8dee09cbe2f3bca5efc8cce01163 100644 (file)
@@ -3,6 +3,7 @@
 " Maintainer:   Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
 " Splint Home: http://www.splint.org/
 " Last Change:  2019 Jul 23
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 " $Revision: 1.3 $
 
 if exists("current_compiler")
@@ -10,10 +11,6 @@ if exists("current_compiler")
 endif
 let current_compiler = "splint"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo-=C
 
index 50b7c97ca772e98d07439f5f06003b8da6725461..fdc79ae2ba2055ac0e3cbb2e42d5c6701e3ab966 100644 (file)
@@ -2,15 +2,12 @@
 " Compiler:    Standard for JavaScript
 " Maintainer:  Romain Lafourcade <romainlafourcade@gmail.com>
 " Last Change: 2020 August 20
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "standard"
 
-if exists(":CompilerSet") != 2
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=npx\ standard
 CompilerSet errorformat=%f:%l:%c:\ %m,%-G%.%#
index 784a61d46a92c258c78da28b9d73f53f71c81c14..22acea9eb060068e0882932fa1dd110643c3b089 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Stylelint
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Jun 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "stylelint"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 81af185f5ee9251753d1032381560ac7249ac5c8..1e6d1f39e1440d795ef00dde8d8517b1259278bc 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    tcl
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2004 Nov 27
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "tcl"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=tcl
 
 CompilerSet errorformat=%EError:\ %m,%+Z\ %\\{4}(file\ \"%f\"\ line\ %l),%-G%.%#
index 0925d176808ce9ec064d095c70cb1061d46faf35..9d8c66056c347dcc6fe1b6be14186c1fcd35babc 100644 (file)
@@ -3,6 +3,7 @@
 " Maintainer:   Artem Chuprina <ran@ran.pp.ru>
 " Contributors: Enno Nagel
 " Last Change:  2024 Mar 29
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
        finish
@@ -10,10 +11,6 @@ endif
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 " If makefile exists and we are not asked to ignore it, we use standard make
 " (do not redefine makeprg)
 if exists('b:tex_ignore_makefile') || exists('g:tex_ignore_makefile') ||
index 3f8e68ebf227840bb376ac9b949210a9499702de..9e722078625315ae8fc1d371b7b413541c50db0a 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    HTML Tidy
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Sep 4
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "tidy"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 14f0ea790c396589d9ca30d1a10866689ee3b2ea..1b46d3bf5a5e8a006eb8c53cfca098adcbe2b3d5 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    TypeScript Runner
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Feb 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "node"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index a246fc7751e72758128bf6e15db465ebf43ead88..76f525baa6a5f76ed2aba8da14a160956e662d52 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    TypeScript Compiler
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Feb 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "tsc"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 3be06f3d4e6761cbd94b535508f369e2d1f0266a..7a152e85fda2e27e87b21048b6320e42138cb27a 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    TypeDoc
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Feb 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "typedoc"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index b508a4616ac6736cb6585cafff6ee7b6ca21e9e6..42c7c65f53c5a9645926f92d9ce687558979c003 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    Mono C#
 " Maintainer:  Chiel ten Brinke (ctje92@gmail.com)
 " Last Change: 2013 May 13
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -11,10 +12,6 @@ let current_compiler = "xbuild"
 let s:keepcpo= &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet errorformat=\ %#%f(%l\\\,%c):\ %m
 CompilerSet makeprg=xbuild\ /nologo\ /v:q\ /property:GenerateFullPaths=true
 
index 79d38b4d141b6337964a58f65997bc24216c47d5..16eebb45ce750022d9a05507552e615d419308bf 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Libxml2 Command-Line Tool
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Jul 30
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "xmllint"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 3de9d08d5512e1288426dc792bff8d52ba9939ea..2e38ca4aba9d71fc9ca85eb3bbddb5e07b8f02b1 100644 (file)
@@ -2,6 +2,7 @@
 " Compiler:    xmlwf
 " Maintainer:  Robert Rowsome <rowsome@wam.umd.edu>
 " Last Change: 2019 Jul 23
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
   finish
@@ -11,10 +12,6 @@ let current_compiler = "xmlwf"
 let s:cpo_save = &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=xmlwf\ %:S
 
 CompilerSet errorformat=%f:%l%c:%m
index 525657d4bba8065182589cbceae799dc193d46f0..74804ca6d066fcbcd452ec34371bb358c65721a7 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    XO
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2019 Jul 10
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "xo"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index 889b04b63c667f2591c8fe25aec9794bee53b9bd..88e2efb27ad9693d8271431abad1c242d7b49bb7 100644 (file)
@@ -2,15 +2,12 @@
 " Compiler:    Yamllint for YAML
 " Maintainer:  Romain Lafourcade <romainlafourcade@gmail.com>
 " Last Change: 2021 July 21
+"              2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
 
 if exists("current_compiler")
     finish
 endif
 let current_compiler = "yamllint"
 
-if exists(":CompilerSet") != 2
-    command -nargs=* CompilerSet setlocal <args>
-endif
-
 CompilerSet makeprg=yamllint\ -f\ parsable
 
index 2cc683132956c7cc060e6c457b7c0fabc235f002..44014a37754ccf0542514438bfb73a1deec5fabc 100644 (file)
@@ -10,10 +10,6 @@ let current_compiler = "zig"
 let s:save_cpo = &cpo
 set cpo&vim
 
-if exists(":CompilerSet") != 2
-    command -nargs=* CompilerSet setlocal <args>
-endif
-
 " a subcommand must be provided for the this compiler (test, build-exe, etc)
 if has('patch-7.4.191')
     CompilerSet makeprg=zig\ \$*\ \%:S
index 5703c1fc44a2762c00977bc55cc0cd2426649b1d..bd195582c1074b6e12e2bef3732177d0dad0519d 100644 (file)
@@ -1,17 +1,13 @@
 " Vim compiler file
 " Compiler:    Zsh
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2020 Sep 6
+" Last Change: 2024 Apr 03
 
 if exists("current_compiler")
   finish
 endif
 let current_compiler = "zsh"
 
-if exists(":CompilerSet") != 2         " older Vim always used :setlocal
-  command -nargs=* CompilerSet setlocal <args>
-endif
-
 let s:cpo_save = &cpo
 set cpo&vim
 
index f2b5e13b72935d5e7877b1cc9c9b7258035073aa..b0bf7922431ce018069a32336869ef45c3cb9725 100644 (file)
@@ -1,4 +1,4 @@
-*usr_51.txt*   For Vim version 9.1.  Last change: 2022 Jun 03
+*usr_51.txt*   For Vim version 9.1.  Last change: 2024 Apr 04
 
                     VIM USER MANUAL - by Bram Moolenaar
 
@@ -649,13 +649,9 @@ When you write a compiler file and put it in your personal runtime directory
 make the default file skip the settings.
                                                        *:CompilerSet*
 The second mechanism is to use ":set" for ":compiler!" and ":setlocal" for
-":compiler".  Vim defines the ":CompilerSet" user command for this.  However,
-older Vim versions don't, thus your plugin should define it then.  This is an
-example: >
+":compiler".  Vim defines the ":CompilerSet" user command for this.  This is
+an example: >
 
-  if exists(":CompilerSet") != 2
-    command -nargs=* CompilerSet setlocal <args>
-  endif
   CompilerSet errorformat&             " use the default 'errorformat'
   CompilerSet makeprg=nmake