neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

irix5_c.vim (610B)


      1 " Vim compiler file
      2 " Compiler:	SGI IRIX 5.3 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 = "irix5_c"
     11 let s:keepcpo= &cpo
     12 set cpo&vim
     13 
     14 CompilerSet errorformat=\%Ecfe:\ Error:\ %f\\,\ line\ %l:\ %m,
     15 	     \%Wcfe:\ Warning:\ %n:\ %f\\,\ line\ %l:\ %m,
     16 	     \%Wcfe:\ Warning\ %n:\ %f\\,\ line\ %l:\ %m,
     17 	     \%W(%l)\ \ Warning\ %n:\ %m,
     18 	     \%-Z\ %p^,
     19 	     \-G\\s%#,
     20 	     \%-G%.%#
     21 
     22 let &cpo = s:keepcpo
     23 unlet s:keepcpo