/usr/share/vim/vim74/compiler
NameSizeModeActions
ant.vim9410644editdlrm
bcc.vim4490644editdlrm
bdf.vim4610644editdlrm
checkstyle.vim5880644editdlrm
cs.vim6260644editdlrm
cucumber.vim5590644editdlrm
decada.vim19460644editdlrm
dot.vim3720644editdlrm
erlang.vim2730644editdlrm
eruby.vim8590644editdlrm
fortran_cv.vim7470644editdlrm
fortran_elf90.vim8020644editdlrm
fortran_F.vim7020644editdlrm
fortran_g77.vim11490644editdlrm
fortran_lf95.vim6830644editdlrm
fpc.vim4530644editdlrm
g95.vim6770644editdlrm
gcc.vim11130644editdlrm
gfortran.vim6710644editdlrm
gnat.vim24180644editdlrm
haml.vim5550644editdlrm
hp_acc.vim10520644editdlrm
icc.vim5850644editdlrm
ifort.vim6900644editdlrm
intel.vim5950644editdlrm
irix5_c.vim6620644editdlrm
irix5_cpp.vim6710644editdlrm
javac.vim3990644editdlrm
jikes.vim5200644editdlrm
mcs.vim8640644editdlrm
mipspro_c89.vim7210644editdlrm
mipspro_cpp.vim7010644editdlrm
mips_c.vim6910644editdlrm
modelsim_vcom.vim7990644editdlrm
msbuild.vim5290644editdlrm
msvc.vim2940644editdlrm
neato.vim3780644editdlrm
ocaml.vim13280644editdlrm
onsgmls.vim5030644editdlrm
pbx.vim4690644editdlrm
perl.vim12090644editdlrm
php.vim7070644editdlrm
pyunit.vim4070644editdlrm
rake.vim7620644editdlrm
README.txt4370644editdlrm
rspec.vim7340644editdlrm
rst.vim6220644editdlrm
ruby.vim10550644editdlrm
rubyunit.vim7390644editdlrm
sass.vim5940644editdlrm
se.vim7420644editdlrm
splint.vim22690644editdlrm
tcl.vim4140644editdlrm
tex.vim17560644editdlrm
tidy.vim5950644editdlrm
xbuild.vim5090644editdlrm
xmllint.vim5610644editdlrm
xmlwf.vim4540644editdlrm
Edit: /usr/share/vim/vim74/compiler/tex.vim (1756B)
" Vim compiler file " Compiler: TeX " Maintainer: Artem Chuprina " Last Change: 2012 Apr 30 if exists("current_compiler") finish endif let s:keepcpo= &cpo set cpo&vim if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal endif " If makefile exists and we are not asked to ignore it, we use standard make " (do not redefine makeprg) if exists('b:tex_ignore_makefile') || exists('g:tex_ignore_makefile') || \(!filereadable('Makefile') && !filereadable('makefile')) " If buffer-local variable 'tex_flavor' exists, it defines TeX flavor, " otherwize the same for global variable with same name, else it will be " LaTeX if exists("b:tex_flavor") let current_compiler = b:tex_flavor elseif exists("g:tex_flavor") let current_compiler = g:tex_flavor else let current_compiler = "latex" endif let &l:makeprg=current_compiler.' -interaction=nonstopmode' else let current_compiler = 'make' endif " Value errorformat are taken from vim help, see :help errorformat-LaTeX, with " addition from Srinath Avadhanula CompilerSet errorformat=%E!\ LaTeX\ %trror:\ %m, \%E!\ %m, \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#, \%+W%.%#\ at\ lines\ %l--%*\\d, \%WLaTeX\ %.%#Warning:\ %m, \%Cl.%l\ %m, \%+C\ \ %m., \%+C%.%#-%.%#, \%+C%.%#[]%.%#, \%+C[]%.%#, \%+C%.%#%[{}\\]%.%#, \%+C<%.%#>%.%#, \%C\ \ %m, \%-GSee\ the\ LaTeX%m, \%-GType\ \ H\ %m, \%-G\ ...%.%#, \%-G%.%#\ (C)\ %.%#, \%-G(see\ the\ transcript%.%#), \%-G\\s%#, \%+O(%*[^()])%r, \%+O%*[^()](%*[^()])%r, \%+P(%f%r, \%+P\ %\\=(%f%r, \%+P%*[^()](%f%r, \%+P[%\\d%[^()]%#(%f%r, \%+Q)%r, \%+Q%*[^()])%r, \%+Q[%\\d%*[^()])%r let &cpo = s:keepcpo unlet s:keepcpo