neovim

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

se.vim (622B)


      1 " Vim compiler file
      2 " Compiler:	se (Liberty Eiffel Compiler)
      3 " Maintainer:	Doug Kearns <dougkearns@gmail.com>
      4 " Last Change:	2024 Apr 03
      5 
      6 if exists("current_compiler")
      7  finish
      8 endif
      9 let current_compiler = "se"
     10 
     11 let s:cpo_save = &cpo
     12 set cpo-=C
     13 
     14 CompilerSet makeprg=se\ c
     15 
     16 CompilerSet errorformat=%W******\ Warning:\ %m,
     17 	    \%E******\ Fatal\ Error:\ %m,
     18 	    \%E******\ Error:\ %m,
     19 	    \%ZLine\ %l\ column\ %c\ in\ %.%#\ (%f)\ %\\=:,
     20 	    \%ZLine\ %l\ columns\ %c\\,\ %\\d%\\+\ %.%#\ (%f)\ %\\=:,
     21 	    \%+C%*[^\ ]%.%#,
     22 	    \%-GThe\ source\ lines\ involved,
     23 	    \%-G%.%#
     24 
     25 let &cpo = s:cpo_save
     26 unlet s:cpo_save