Mercurial > vim
view runtime/compiler/zig_test.vim @ 34175:174c2447d10b
Added tag v9.1.0043 for changeset 8b5471360746ecfecbc3d41623283fe9b73d8a93
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 22 Jan 2024 20:30:06 +0100 |
parents | 15c80d8bc515 |
children | 99bf06d67e43 |
line wrap: on
line source
" Vim compiler file " Compiler: Zig Compiler (zig test) " Upstream: https://github.com/ziglang/zig.vim if exists('current_compiler') finish endif runtime compiler/zig.vim let current_compiler = 'zig_test' let s:save_cpo = &cpo set cpo&vim if exists(':CompilerSet') != 2 command -nargs=* CompilerSet setlocal <args> endif if has('patch-7.4.191') CompilerSet makeprg=zig\ test\ \%:S\ \$* else CompilerSet makeprg=zig\ test\ \"%\"\ \$* endif let &cpo = s:save_cpo unlet s:save_cpo " vim: tabstop=8 shiftwidth=4 softtabstop=4 expandtab