xref: /vim-8.2.3635/runtime/compiler/mips_c.vim (revision 9a7224b5)
1" Vim compiler file
2" Compiler:	SGI IRIX 6.5 MIPS C (cc)
3" Maintainer:	David Harrison <[email protected]>
4" Last Change:	2012 Apr 30
5
6if exists("current_compiler")
7  finish
8endif
9let current_compiler = "mips_c"
10let s:keepcpo= &cpo
11set cpo&vim
12
13if exists(":CompilerSet") != 2		" older Vim always used :setlocal
14  command -nargs=* CompilerSet setlocal <args>
15endif
16
17CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l,
18		    \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l,
19		    \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l,
20		    \%+C\ \ %m.,
21		    \%-Z\ \ %p^,
22		    \%-G\\s%#,
23		    \%-G%.%#
24
25let &cpo = s:keepcpo
26unlet s:keepcpo
27