Mercurial > vim
view runtime/compiler/zig.vim @ 34481:de28179cc9cd
runtime(sh): Update syntax file, fix issue #962 (#14138)
Commit: https://github.com/vim/vim/commit/1bdc9435c1a14ca1a30e5b5927ab63f603ec4409
Author: dkearns <dougkearns@gmail.com>
Date: Tue Mar 5 05:14:08 2024 +1100
runtime(sh): Update syntax file, fix issue https://github.com/vim/vim/issues/962 (https://github.com/vim/vim/issues/14138)
Allow the opening parenthesis of a multiline array assignment, within an
if statement, to appear at EOL.
Fixes issue #962.
Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 04 Mar 2024 19:15:06 +0100 |
parents | 15c80d8bc515 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Zig Compiler " Upstream: https://github.com/ziglang/zig.vim if exists("current_compiler") finish endif let current_compiler = "zig" let s:save_cpo = &cpo set cpo&vim if exists(":CompilerSet") != 2 command -nargs=* CompilerSet setlocal <args> endif " a subcommand must be provided for the this compiler (test, build-exe, etc) if has('patch-7.4.191') CompilerSet makeprg=zig\ \$*\ \%:S else CompilerSet makeprg=zig\ \$*\ \"%\" endif " TODO: improve errorformat as needed. let &cpo = s:save_cpo unlet s:save_cpo " vim: tabstop=8 shiftwidth=4 softtabstop=4 expandtab