From 029f72b1a93430b24b88eb3a72c6114d9f149737 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:09:20 +0200 Subject: Adding upstream version 2:9.1.0016. Signed-off-by: Daniel Baumann --- runtime/compiler/mipspro_c89.vim | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 runtime/compiler/mipspro_c89.vim (limited to 'runtime/compiler/mipspro_c89.vim') diff --git a/runtime/compiler/mipspro_c89.vim b/runtime/compiler/mipspro_c89.vim new file mode 100644 index 0000000..20eb70d --- /dev/null +++ b/runtime/compiler/mipspro_c89.vim @@ -0,0 +1,27 @@ +" Vim compiler file +" Compiler: SGI IRIX 6.5 MIPSPro C (c89) +" Maintainer: David Harrison +" Last Change: 2012 Apr 30 + +if exists("current_compiler") + finish +endif +let current_compiler = "mipspro_c89" +let s:keepcpo= &cpo +set cpo&vim + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal +endif + +CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l, + \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l, + \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l, + \%-Z%p%^, + \%+C\ %\\{10}%m%., + \%+C\ \ %m, + \%-G\\s%#, + \%-G%.%# + +let &cpo = s:keepcpo +unlet s:keepcpo -- cgit v1.2.3