diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-09 21:02:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-09 21:02:37 +0800 |
commit | 9b0b4829c7e49ad2d2c13645b974f9edac987609 (patch) | |
tree | dec926d6705efe8b028421e483232f769b096dff /runtime | |
parent | 60e3940b4a94b2d089147579c7d62747543f0385 (diff) | |
parent | b9732e555b116e8b6b037d107722ce39add4952f (diff) | |
download | rneovim-9b0b4829c7e49ad2d2c13645b974f9edac987609.tar.gz rneovim-9b0b4829c7e49ad2d2c13645b974f9edac987609.tar.bz2 rneovim-9b0b4829c7e49ad2d2c13645b974f9edac987609.zip |
Merge pull request #17345 from zeertzjq/vim-8.2.4329
vim-patch:8.2.4329: no support for end line number and column in 'errorformat'
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 ed736ad4eb..5b68da8be9 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -1339,12 +1339,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 |