From 9dade3c42ade6aaabea4d57659e045af889cd647 Mon Sep 17 00:00:00 2001 From: Enno Nagel Date: Sat, 10 Jan 2015 11:57:08 +0100 Subject: [PATCH] add VimLatexErrors! that does not open the quickfix window --- autoload/latex/latexmk.vim | 2 +- doc/latex.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/autoload/latex/latexmk.vim b/autoload/latex/latexmk.vim index b19bc72..2c5159e 100644 --- a/autoload/latex/latexmk.vim +++ b/autoload/latex/latexmk.vim @@ -26,7 +26,7 @@ function! latex#latexmk#init(initialized) " {{{1 com! -buffer VimLatexCompileToggle call latex#latexmk#toggle() com! -buffer VimLatexStop call latex#latexmk#stop() com! -buffer VimLatexStopAll call latex#latexmk#stop_all() - com! -buffer VimLatexErrors call latex#latexmk#errors(1) + com! -buffer -bang VimLatexErrors call latex#latexmk#errors( == "!") com! -buffer VimLatexOutput call latex#latexmk#output() com! -buffer -bang VimLatexClean call latex#latexmk#clean( == "!") com! -buffer -bang VimLatexStatus call latex#latexmk#status( == "!") diff --git a/doc/latex.txt b/doc/latex.txt index 66595ef..bfb3800 100644 --- a/doc/latex.txt +++ b/doc/latex.txt @@ -247,6 +247,7 @@ Below the commands are listed in alphabetical order. *VimLatexCompileSS!* call latex#latexmk#compile_singleshot(1) *VimLatexCompileToggle* call latex#latexmk#toggle() *VimLatexErrors* call latex#latexmk#errors(1) +*VimLatexErrors!* call latex#latexmk#errors(0) *VimLatexHelp* call latex#help() *VimLatexInfo* call latex#info() *VimLatexOutput* call latex#latexmk#output()