Mercurial > vim
view runtime/compiler/zig_test.vim @ 31700:9c496513d57c v9.0.1182
patch 9.0.1182: go checksum files are not recognized
Commit: https://github.com/vim/vim/commit/043d7b2c84cda275354aa023b5769660ea70a168
Author: Amaan Q <amaanq12@gmail.com>
Date: Wed Jan 11 21:24:26 2023 +0000
patch 9.0.1182: go checksum files are not recognized
Problem: go checksum files are not recognized.
Solution: Add the name of go checksum files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/11803)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 11 Jan 2023 22:30:03 +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