aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/quickfix.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2023-06-25 09:17:47 -0700
committerGitHub <noreply@github.com>2023-06-25 09:17:47 -0700
commit5ceb2238d3685255cd517ca87fd7edae9ed88811 (patch)
tree5972cd240cb18d50a7d56b3b5e0c1019c947e07a /runtime/doc/quickfix.txt
parente59cf3b3a9ee0f9e9b4d2e01059dbdf185eb5685 (diff)
parent49a7585981cdf7403e76a614558e602a98e64301 (diff)
downloadrneovim-5ceb2238d3685255cd517ca87fd7edae9ed88811.tar.gz
rneovim-5ceb2238d3685255cd517ca87fd7edae9ed88811.tar.bz2
rneovim-5ceb2238d3685255cd517ca87fd7edae9ed88811.zip
Merge #24116 from justinmk/doc
Diffstat (limited to 'runtime/doc/quickfix.txt')
-rw-r--r--runtime/doc/quickfix.txt16
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