Mercurial > vim
view runtime/compiler/stack.vim @ 30055:0acf2a20c357 v9.0.0365
patch 9.0.0365: file name used in test is unusual
Commit: https://github.com/vim/vim/commit/91a874eb88eff2df9b8fdd64ccf98eed337823cf
Author: Dominique Pelle <dominique.pelle@gmail.com>
Date: Sat Sep 3 10:59:32 2022 +0100
patch 9.0.0365: file name used in test is unusual
Problem: File name used in test is unusual.
Solution: Rename it. (Dominique Pell?, closes https://github.com/vim/vim/issues/11044)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 03 Sep 2022 12:00:06 +0200 |
parents | 34fd018452ed |
children |
line wrap: on
line source
" Vim compiler file " Compiler: Haskell Stack " Maintainer: Daniel Campoverde <alx@sillybytes.net> " Latest Revision: 2018-08-27 if exists("current_compiler") finish endif let current_compiler = "stack" let s:cpo_save = &cpo set cpo&vim CompilerSet errorformat= \%-G%.%#:\ build\ %.%#, \%-G%.%#:\ configure\ %.%#, \%-G[%.%#]%.%#, \%-G%.%#preprocessing\ %.%#, \%-G%.%#configuring\ %.%#, \%-G%.%#building\ %.%#, \%-G%.%#linking\ %.%#, \%-G%.%#installing\ %.%#, \%-G%.%#registering\ %.%#, \%-G%.%#:\ copy/register%.%#, \%-G%.%#process\ exited\ %.%#, \%-G%.%#--builddir=%.%#, \%-G--%.%#, \%-G%.%#\|%.%#, \%E%f:%l:%c:\ error:,%+Z\ \ \ \ %m, \%E%f:%l:%c:\ error:\ %m,%-Z, \%W%f:%l:%c:\ warning:,%+Z\ \ \ \ %m, \%W%f:%l:%c:\ warning:\ %m,%-Z, let &cpo = s:cpo_save unlet s:cpo_save