golden hour
/usr/share/vim/vim74/compiler
⬆️ Go Up
Upload
File/Folder
Size
Actions
README.txt
437 B
Del
OK
ant.vim
941 B
Del
OK
bcc.vim
449 B
Del
OK
bdf.vim
461 B
Del
OK
checkstyle.vim
588 B
Del
OK
cs.vim
626 B
Del
OK
cucumber.vim
559 B
Del
OK
decada.vim
1.9 KB
Del
OK
dot.vim
372 B
Del
OK
erlang.vim
273 B
Del
OK
eruby.vim
859 B
Del
OK
fortran_F.vim
702 B
Del
OK
fortran_cv.vim
747 B
Del
OK
fortran_elf90.vim
802 B
Del
OK
fortran_g77.vim
1.12 KB
Del
OK
fortran_lf95.vim
683 B
Del
OK
fpc.vim
453 B
Del
OK
g95.vim
677 B
Del
OK
gcc.vim
1.09 KB
Del
OK
gfortran.vim
671 B
Del
OK
gnat.vim
2.36 KB
Del
OK
haml.vim
555 B
Del
OK
hp_acc.vim
1.03 KB
Del
OK
icc.vim
585 B
Del
OK
ifort.vim
690 B
Del
OK
intel.vim
595 B
Del
OK
irix5_c.vim
662 B
Del
OK
irix5_cpp.vim
671 B
Del
OK
javac.vim
399 B
Del
OK
jikes.vim
520 B
Del
OK
mcs.vim
864 B
Del
OK
mips_c.vim
691 B
Del
OK
mipspro_c89.vim
721 B
Del
OK
mipspro_cpp.vim
701 B
Del
OK
modelsim_vcom.vim
799 B
Del
OK
msbuild.vim
529 B
Del
OK
msvc.vim
294 B
Del
OK
neato.vim
378 B
Del
OK
ocaml.vim
1.3 KB
Del
OK
onsgmls.vim
503 B
Del
OK
pbx.vim
469 B
Del
OK
perl.vim
1.18 KB
Del
OK
php.vim
707 B
Del
OK
pyunit.vim
407 B
Del
OK
rake.vim
762 B
Del
OK
rspec.vim
734 B
Del
OK
rst.vim
622 B
Del
OK
ruby.vim
1.03 KB
Del
OK
rubyunit.vim
739 B
Del
OK
sass.vim
594 B
Del
OK
se.vim
742 B
Del
OK
splint.vim
2.22 KB
Del
OK
tcl.vim
414 B
Del
OK
tex.vim
1.71 KB
Del
OK
tidy.vim
595 B
Del
OK
xbuild.vim
509 B
Del
OK
xmllint.vim
561 B
Del
OK
xmlwf.vim
454 B
Del
OK
Edit: tex.vim
" Vim compiler file " Compiler: TeX " Maintainer: Artem Chuprina <ran@ran.pp.ru> " 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 <args> 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 <srinath@fastmail.fm> 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\ <return>%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
Save