comparison runtime/doc/quickfix.txt @ 27605:bf540a32439a v8.2.4329

patch 8.2.4329: no support for end line number and column in 'errorformat' Commit: https://github.com/vim/vim/commit/e023d499378942a6c3a3855cbe461ec2cb570f63 Author: haya14busa <haya14busa@gmail.com> Date: Tue Feb 8 18:09:29 2022 +0000 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 https://github.com/vim/vim/issues/9624)
author Bram Moolenaar <Bram@vim.org>
date Tue, 08 Feb 2022 19:15:03 +0100
parents 3e661b0cf500
children 179c118424a6
comparison
equal deleted inserted replaced
27604:4f782c34c224 27605:bf540a32439a
1383 Basic items 1383 Basic items
1384 1384
1385 %f file name (finds a string) 1385 %f file name (finds a string)
1386 %o module name (finds a string) 1386 %o module name (finds a string)
1387 %l line number (finds a number) 1387 %l line number (finds a number)
1388 %e end line number (finds a number)
1388 %c column number (finds a number representing character 1389 %c column number (finds a number representing character
1389 column of the error, byte index, a <tab> is 1 1390 column of the error, byte index, a <tab> is 1
1390 character column) 1391 character column)
1391 %v virtual column number (finds a number representing 1392 %v virtual column number (finds a number representing
1392 screen column of the error (1 <tab> == 8 screen 1393 screen column of the error (1 <tab> == 8 screen
1393 columns)) 1394 columns))
1395 %k end column number (finds a number representing
1396 the character column of the error, byte index, or a
1397 number representing screen end column of the error if
1398 it's used with %v)
1394 %t error type (finds a single character): 1399 %t error type (finds a single character):
1395 e - error message 1400 e - error message
1396 w - warning message 1401 w - warning message
1397 i - info message 1402 i - info message
1398 n - note message 1403 n - note message