diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-09 13:18:37 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-02-09 13:31:06 +0800 |
commit | b9732e555b116e8b6b037d107722ce39add4952f (patch) | |
tree | 3f8ba674841039cb967e468b4f1e57245b4998f8 /runtime | |
parent | 07c97fa02d2f5be0e643f78428d56413895096cd (diff) | |
download | rneovim-b9732e555b116e8b6b037d107722ce39add4952f.tar.gz rneovim-b9732e555b116e8b6b037d107722ce39add4952f.tar.bz2 rneovim-b9732e555b116e8b6b037d107722ce39add4952f.zip |
vim-patch:8.2.4329: no support for end line number and column in 'errorformat'
Problem: No support for end line number and column in 'errorformat'.
Solution: Add %e and %k. (closes vim/vim#9624)
https://github.com/vim/vim/commit/e023d499378942a6c3a3855cbe461ec2cb570f63
Use "\t" to represent a Tab as it looks better.
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 |