add VimLatexErrors! that does not open the quickfix window

This commit is contained in:
Enno Nagel 2015-01-10 11:57:08 +01:00
parent f3be519af1
commit 9dade3c42a
2 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,7 @@ function! latex#latexmk#init(initialized) " {{{1
com! -buffer VimLatexCompileToggle call latex#latexmk#toggle() com! -buffer VimLatexCompileToggle call latex#latexmk#toggle()
com! -buffer VimLatexStop call latex#latexmk#stop() com! -buffer VimLatexStop call latex#latexmk#stop()
com! -buffer VimLatexStopAll call latex#latexmk#stop_all() com! -buffer VimLatexStopAll call latex#latexmk#stop_all()
com! -buffer VimLatexErrors call latex#latexmk#errors(1) com! -buffer -bang VimLatexErrors call latex#latexmk#errors(<q-bang> == "!")
com! -buffer VimLatexOutput call latex#latexmk#output() com! -buffer VimLatexOutput call latex#latexmk#output()
com! -buffer -bang VimLatexClean call latex#latexmk#clean(<q-bang> == "!") com! -buffer -bang VimLatexClean call latex#latexmk#clean(<q-bang> == "!")
com! -buffer -bang VimLatexStatus call latex#latexmk#status(<q-bang> == "!") com! -buffer -bang VimLatexStatus call latex#latexmk#status(<q-bang> == "!")

View File

@ -247,6 +247,7 @@ Below the commands are listed in alphabetical order.
*VimLatexCompileSS!* call latex#latexmk#compile_singleshot(1) *VimLatexCompileSS!* call latex#latexmk#compile_singleshot(1)
*VimLatexCompileToggle* call latex#latexmk#toggle() *VimLatexCompileToggle* call latex#latexmk#toggle()
*VimLatexErrors* call latex#latexmk#errors(1) *VimLatexErrors* call latex#latexmk#errors(1)
*VimLatexErrors!* call latex#latexmk#errors(0)
*VimLatexHelp* call latex#help() *VimLatexHelp* call latex#help()
*VimLatexInfo* call latex#info() *VimLatexInfo* call latex#info()
*VimLatexOutput* call latex#latexmk#output() *VimLatexOutput* call latex#latexmk#output()