neovim

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

intel.vim (543B)


      1 " Vim compiler file
      2 " Compiler:     Intel C++ 7.1
      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 = "intel"
     11 let s:keepcpo= &cpo
     12 set cpo&vim
     13 
     14 CompilerSet errorformat=%E%f(%l):\ error:\ %m,
     15 	    \%W%f(%l):\ warning:\ %m,
     16 	    \%I%f(%l):\ remark\ #%n:\ %m,
     17 	    \%+C\ \ %m.,
     18 	    \%-Z\ \ %p^,
     19 	    \%-G\\s%#,
     20 	    \%-G%.%#
     21 
     22 let &cpo = s:keepcpo
     23 unlet s:keepcpo