mirror of
https://github.com/neovim/neovim.git
synced 2026-05-01 19:45:02 +00:00
vim-patch:408281e16a36
runtime: Remove fallback :CompilerSet definition from compiler plugins
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: vim/vim#14399
408281e16a
Co-authored-by: Doug Kearns <dougkearns@gmail.com>
This commit is contained in:
@@ -2500,13 +2500,9 @@ When you write a compiler file and put it in your personal runtime directory
|
||||
variable to 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user