mips_c.vim (639B)
1 " Vim compiler file 2 " Compiler: SGI IRIX 6.5 MIPS C (cc) 3 " Maintainer: David Harrison <david_jr@users.sourceforge.net> 4 " Last Change: 2012 Apr 30 5 " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition) 6 7 if exists("current_compiler") 8 finish 9 endif 10 let current_compiler = "mips_c" 11 let s:keepcpo= &cpo 12 set cpo&vim 13 14 CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l, 15 \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l, 16 \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l, 17 \%+C\ \ %m., 18 \%-Z\ \ %p^, 19 \%-G\\s%#, 20 \%-G%.%# 21 22 let &cpo = s:keepcpo 23 unlet s:keepcpo