comparison runtime/doc/quickfix.txt @ 20729:ada6f26e6eb1 v8.2.0917

patch 8.2.0917: quickfix entries do not suport a "note" type Commit: https://github.com/vim/vim/commit/e928366de5deca359fad779a4f740db703296302 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 7 14:10:47 2020 +0200 patch 8.2.0917: quickfix entries do not suport a "note" type Problem: Quickfix entries do not suport a "note" type. Solution: Add support for "note". (partly by Yegappan Lakshmanan, closes #5527, closes #6216)
author Bram Moolenaar <Bram@vim.org>
date Sun, 07 Jun 2020 14:15:04 +0200
parents d6827bd31d1d
children 661eb972cb22
comparison
equal deleted inserted replaced
20728:0775a4c140a9 20729:ada6f26e6eb1
1373 %c column number (finds a number representing character 1373 %c column number (finds a number representing character
1374 column of the error, (1 <tab> == 1 character column)) 1374 column of the error, (1 <tab> == 1 character column))
1375 %v virtual column number (finds a number representing 1375 %v virtual column number (finds a number representing
1376 screen column of the error (1 <tab> == 8 screen 1376 screen column of the error (1 <tab> == 8 screen
1377 columns)) 1377 columns))
1378 %t error type (finds a single character) 1378 %t error type (finds a single character):
1379 e - error message
1380 w - warning message
1381 i - info message
1382 n - note message
1379 %n error number (finds a number) 1383 %n error number (finds a number)
1380 %m error message (finds a string) 1384 %m error message (finds a string)
1381 %r matches the "rest" of a single-line file message %O/P/Q 1385 %r matches the "rest" of a single-line file message %O/P/Q
1382 %p pointer line (finds a sequence of '-', '.', ' ' or 1386 %p pointer line (finds a sequence of '-', '.', ' ' or
1383 tabs and uses the length for the column number) 1387 tabs and uses the length for the column number)
1444 messages, i.e. error strings that consume more than one line. Possible 1448 messages, i.e. error strings that consume more than one line. Possible
1445 prefixes are: 1449 prefixes are:
1446 %E start of a multi-line error message 1450 %E start of a multi-line error message
1447 %W start of a multi-line warning message 1451 %W start of a multi-line warning message
1448 %I start of a multi-line informational message 1452 %I start of a multi-line informational message
1453 %N start of a multi-line note message
1449 %A start of a multi-line message (unspecified type) 1454 %A start of a multi-line message (unspecified type)
1450 %> for next line start with current pattern again |efm-%>| 1455 %> for next line start with current pattern again |efm-%>|
1451 %C continuation of a multi-line message 1456 %C continuation of a multi-line message
1452 %Z end of a multi-line message 1457 %Z end of a multi-line message
1453 These can be used with '+' and '-', see |efm-ignore| below. 1458 These can be used with '+' and '-', see |efm-ignore| below.