Mercurial > vim
view runtime/compiler/zig_build_exe.vim @ 32176:50f887578908 v9.0.1419
patch 9.0.1419: Lean files are not recognized
Commit: https://github.com/vim/vim/commit/4a5c39fc52a73d46ac77cf574f765a465befc3c0
Author: Amaan Qureshi <amaanq12@gmail.com>
Date: Tue Mar 21 19:57:33 2023 +0000
patch 9.0.1419: Lean files are not recognized
Problem: Lean files are not recognized.
Solution: Add a pattern for Lean files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/12177)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 21 Mar 2023 21:00:07 +0100 |
parents | 15c80d8bc515 |
children | 99bf06d67e43 |
line wrap: on
line source
" Vim compiler file " Compiler: Zig Compiler (zig build-exe) " Upstream: https://github.com/ziglang/zig.vim if exists('current_compiler') finish endif runtime compiler/zig.vim let current_compiler = 'zig_build_exe' 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\ build-exe\ \%:S\ \$* else CompilerSet makeprg=zig\ build-exe\ \"%\"\ \$* endif let &cpo = s:save_cpo unlet s:save_cpo " vim: tabstop=8 shiftwidth=4 softtabstop=4 expandtab