mirror of
https://github.com/gryf/vim-latex-compiler.git
synced 2025-12-17 03:20:23 +01:00
16 lines
352 B
VimL
16 lines
352 B
VimL
" Vim compiler file
|
|
" Compiler: pdf creator out of LaTeX files using rubber
|
|
if exists("current_compiler")
|
|
finish
|
|
endif
|
|
|
|
let current_compiler = "rubber"
|
|
|
|
if exists('g:rubber_command')
|
|
execute 'CompilerSet makeprg='.escape(g:rubber_command, ' \|"').'\ %'
|
|
else
|
|
CompilerSet makeprg=rubber\ -d\ %
|
|
endif
|
|
|
|
"CompilerSet efm=%f:%l:\ [%t]%m,%f:%l:%m
|