mirror of
https://github.com/vim/vim.git
synced 2026-05-27 12:36:51 +02:00
53d97c93b7
closes: #20312 Signed-off-by: bennyyip <yebenmy@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
20 lines
417 B
VimL
20 lines
417 B
VimL
" Vim compiler file
|
|
" Compiler: Zig Compiler (zig cc)
|
|
" Last Change: 2026 May 12
|
|
" 2026 May 24 by the Vim project (do not escape vars for makeprg)
|
|
|
|
if exists('current_compiler')
|
|
finish
|
|
endif
|
|
runtime compiler/zig.vim
|
|
let current_compiler = 'zig_cc'
|
|
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
CompilerSet makeprg=zig\ cc\ %:S\ $*
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|
|
" vim: tabstop=8 shiftwidth=2 softtabstop=2 expandtab
|