diff options
Diffstat (limited to 'runtime/doc/quickfix.txt')
-rw-r--r-- | runtime/doc/quickfix.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index 7c06358be2..7a1649a74b 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -867,11 +867,11 @@ lists. They set one of the existing error lists as the current one. *:chistory* *:chi* :[count]chi[story] Show the list of error lists. The current list is - marked with ">". The output looks like: - error list 1 of 3; 43 errors :make ~ - > error list 2 of 3; 0 errors :helpgrep tag ~ - error list 3 of 3; 15 errors :grep ex_help *.c ~ - + marked with ">". The output looks like: > + error list 1 of 3; 43 errors :make + > error list 2 of 3; 0 errors :helpgrep tag + error list 3 of 3; 15 errors :grep ex_help *.c +< When [count] is given, then the count'th quickfix list is made the current list. Example: > " Make the 4th quickfix list current @@ -1317,8 +1317,8 @@ TEX COMPILER *compiler-tex* Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim) uses make command if possible. If the compiler finds a file named "Makefile" or "makefile" in the current directory, it supposes that you want to process -your *TeX files with make, and the makefile does the right work. In this case -compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If +your `*TeX` files with make, and the makefile does the right work. In this case +compiler sets 'errorformat' for `*TeX` output and leaves 'makeprg' untouched. If neither "Makefile" nor "makefile" is found, the compiler will not use make. You can force the compiler to ignore makefiles by defining b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for @@ -1933,7 +1933,7 @@ You can customize the given setting to suit your own purposes, for example, all the annoying "Overfull ..." warnings could be excluded from being recognized as an error. Alternatively to filtering the LaTeX compiler output, it is also possible -to directly read the *.log file that is produced by the [La]TeX compiler. +to directly read the `*.log` file that is produced by the [La]TeX compiler. This contains even more useful information about possible error causes. However, to properly parse such a complex file, an external filter should be used. See the description further above how to make such a filter known |