aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/quickfix.txt
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-12-28 13:39:39 +0100
committerChristian Clason <c.clason@uni-graz.at>2023-01-01 15:05:13 +0100
commit18c22a6fb4c2526c996452215abd62a6a2abe781 (patch)
treeaf008552d145f3f5b138437cc9d0db9966e89f91 /runtime/doc/quickfix.txt
parentc4942880be0521673548c48bf61c1eac6bd37036 (diff)
downloadrneovim-18c22a6fb4c2526c996452215abd62a6a2abe781.tar.gz
rneovim-18c22a6fb4c2526c996452215abd62a6a2abe781.tar.bz2
rneovim-18c22a6fb4c2526c996452215abd62a6a2abe781.zip
docs: fix treesitter parsing errors
Diffstat (limited to 'runtime/doc/quickfix.txt')
-rw-r--r--runtime/doc/quickfix.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index e79d79ba1b..a30f32b75e 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1585,8 +1585,9 @@ A call of |:clist| writes them accordingly with their correct filenames:
Unlike the other prefixes that all match against whole lines, %P, %Q and %O
can be used to match several patterns in the same line. Thus it is possible
-to parse even nested files like in the following line:
+to parse even nested files like in the following line: >
{"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}}
+<
The %O then parses over strings that do not contain any push/pop file name
information. See |errorformat-LaTeX| for an extended example.
@@ -1946,9 +1947,9 @@ by Vim.
The default format for the lines displayed in the quickfix window and location
list window is:
-
+>
<filename>|<lnum> col <col>|<text>
-
+<
The values displayed in each line correspond to the "bufnr", "lnum", "col" and
"text" fields returned by the |getqflist()| function.