neovim

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

mipspro_c89.vim (669B)


      1 " Vim compiler file
      2 " Compiler:	SGI IRIX 6.5 MIPSPro C (c89)
      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 = "mipspro_c89"
     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 	    \%-Z%p%^,
     18 	    \%+C\ %\\{10}%m%.,
     19 	    \%+C\ \ %m,
     20 	    \%-G\\s%#,
     21 	    \%-G%.%#
     22 
     23 let &cpo = s:keepcpo
     24 unlet s:keepcpo