neovim

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

irix5_cpp.vim (619B)


      1 " Vim compiler file
      2 " Compiler:	SGI IRIX 5.3 CC or NCC
      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_cpp"
     11 let s:keepcpo= &cpo
     12 set cpo&vim
     13 
     14 CompilerSet errorformat=%E\"%f\"\\,\ line\ %l:\ error(%n):\ ,
     15 	    \%E\"%f\"\\,\ line\ %l:\ error(%n):\ %m,
     16 	    \%W\"%f\"\\,\ line\ %l:\ warning(%n):\ %m,
     17 	    \%+IC++\ prelinker:\ %m,
     18 	      \%-Z\ \ %p%^,
     19 	      \%+C\ %\\{10}%.%#,
     20 	      \%-G%.%#
     21 
     22 let &cpo = s:keepcpo
     23 unlet s:keepcpo