mirror of
https://github.com/neovim/neovim.git
synced 2026-05-24 05:40:08 +00:00
19 lines
353 B
VimL
19 lines
353 B
VimL
" Vim compiler file
|
|
" Compiler: Zig Compiler (zig cc)
|
|
" Last Change: 2026 May 12
|
|
|
|
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
|