Mercurial > vim
view runtime/compiler/zig_test.vim @ 32523:626c2806d2c1 v9.0.1593
patch 9.0.1593: MS-Windows: assert error when compiled with debug mode
Commit: https://github.com/vim/vim/commit/3c240f608c38ef1af67e112e0e689751c003f946
Author: K.Takata <kentkt@csc.jp>
Date: Wed May 31 12:47:45 2023 +0100
patch 9.0.1593: MS-Windows: assert error when compiled with debug mode
Problem: MS-Windows: assert error when compiled with debug mode.
Solution: Adjust arguments to setvbuf(). (Ken Takata, closes https://github.com/vim/vim/issues/12467)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 31 May 2023 14:00:06 +0200 |
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