diff options
author | haya14busa <haya14busa@gmail.com> | 2022-02-08 18:09:29 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-08 18:09:29 +0000 |
commit | e023d499378942a6c3a3855cbe461ec2cb570f63 (patch) | |
tree | 08453c4abfe7323c723b23dc7ad1a5b9453a2208 /runtime | |
parent | 73a16c22a4703cb9a7becdf459ce62bd894980d7 (diff) | |
download | vim-git-e023d499378942a6c3a3855cbe461ec2cb570f63.tar.gz |
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')
-rw-r--r-- | runtime/doc/quickfix.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index b7a01bdfd..6bb259f72 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 |