Mercurial > vim
view runtime/compiler/zig_build_exe.vim @ 32736:161ae1985d81 v9.0.1687
patch 9.0.1687: mapset() not properly handling script ID
Commit: https://github.com/vim/vim/commit/7e0bae024d4c1673cff31763227ad52b936fa56f
Author: zeertzjq <zeertzjq@outlook.com>
Date: Fri Aug 11 23:15:38 2023 +0200
patch 9.0.1687: mapset() not properly handling script ID
Problem: mapset() not properly handling script ID
Solution: replace_termcodes() may accept a script ID
closes: #12699
closes: #12697
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 11 Aug 2023 23:30:03 +0200 |
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