2004-06-13 20:20:40 +00:00
|
|
|
" Vim compiler file
|
|
|
|
" Compiler: SGI IRIX 5.3 cc
|
|
|
|
" Maintainer: David Harrison <david_jr@users.sourceforge.net>
|
2012-04-30 15:56:52 +02:00
|
|
|
" Last Change: 2012 Apr 30
|
2024-04-04 22:00:58 +02:00
|
|
|
" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
if exists("current_compiler")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let current_compiler = "irix5_c"
|
2012-04-30 15:56:52 +02:00
|
|
|
let s:keepcpo= &cpo
|
|
|
|
set cpo&vim
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
CompilerSet errorformat=\%Ecfe:\ Error:\ %f\\,\ line\ %l:\ %m,
|
|
|
|
\%Wcfe:\ Warning:\ %n:\ %f\\,\ line\ %l:\ %m,
|
|
|
|
\%Wcfe:\ Warning\ %n:\ %f\\,\ line\ %l:\ %m,
|
|
|
|
\%W(%l)\ \ Warning\ %n:\ %m,
|
|
|
|
\%-Z\ %p^,
|
|
|
|
\-G\\s%#,
|
|
|
|
\%-G%.%#
|
2012-04-30 15:56:52 +02:00
|
|
|
|
|
|
|
let &cpo = s:keepcpo
|
|
|
|
unlet s:keepcpo
|