vim-patch:077d1d2: runtime(make): add compiler/make.vim to reset compiler plugin settings

closes: vim/vim#15645

077d1d2cff

Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Co-authored-by: K.Takata <kentkt@csc.jp>
This commit is contained in:
Christian Clason
2024-09-11 09:23:56 +02:00
parent 57db94235c
commit 608ef83fc6
3 changed files with 23 additions and 1 deletions

13
runtime/compiler/make.vim Normal file
View File

@@ -0,0 +1,13 @@
" Vim compiler plugin
"
" Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2024 Sep 10
" Original Author: Konfekt
"
" This compiler plugin is used to reset previously set compiler options.
if exists("g:current_compiler") | unlet g:current_compiler | endif
if exists("b:current_compiler") | unlet b:current_compiler | endif
CompilerSet makeprg&
CompilerSet errorformat&