" Vim compiler file " Compiler: se (SmartEiffel Compiler) " Maintainer: Doug Kearns " URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/se.vim " Last Change: 2004 Jan 26 if exists("current_compiler") finish endif let current_compiler = "se" let s:cpo_save = &cpo set cpo-=C setlocal makeprg=compile setlocal errorformat=%W******\ Warning:\ %m, \%E******\ Fatal\ Error:\ %m, \%E******\ Error:\ %m, \%CLine\ %l\ column\ %c\ in\ %\\w%\\+\ (%f)\ :, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save