summaryrefslogtreecommitdiffstats
path: root/runtime/doc/quickfix.txt
diff options
context:
space:
mode:
authorhaya14busa <haya14busa@gmail.com>2022-02-08 18:09:29 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-08 18:09:29 +0000
commite023d499378942a6c3a3855cbe461ec2cb570f63 (patch)
tree08453c4abfe7323c723b23dc7ad1a5b9453a2208 /runtime/doc/quickfix.txt
parent73a16c22a4703cb9a7becdf459ce62bd894980d7 (diff)
patch 8.2.4329: no support for end line number and column in 'errorformat'v8.2.4329
Problem: No support for end line number and column in 'errorformat'. Solution: Add %e and %k. (closes #9624)
Diffstat (limited to 'runtime/doc/quickfix.txt')
-rw-r--r--runtime/doc/quickfix.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index b7a01bdfd7..6bb259f723 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1385,12 +1385,17 @@ Basic items
%f file name (finds a string)
%o module name (finds a string)
%l line number (finds a number)
+ %e end line number (finds a number)
%c column number (finds a number representing character
column of the error, byte index, a <tab> is 1
character column)
%v virtual column number (finds a number representing
screen column of the error (1 <tab> == 8 screen
columns))
+ %k end column number (finds a number representing
+ the character column of the error, byte index, or a
+ number representing screen end column of the error if
+ it's used with %v)
%t error type (finds a single character):
e - error message
w - warning message