diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-01 23:13:10 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-02 12:20:34 -0500 |
commit | 01eda00962258a881cbacb902f1f508e70249470 (patch) | |
tree | a4a85ca6593e658095f7cd92c5df324b5f2a305e /runtime | |
parent | 48caf1df8581a9a9da9072f901411b918333952d (diff) | |
download | rneovim-01eda00962258a881cbacb902f1f508e70249470.tar.gz rneovim-01eda00962258a881cbacb902f1f508e70249470.tar.bz2 rneovim-01eda00962258a881cbacb902f1f508e70249470.zip |
vim-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 vim/vim#5527, closes vim/vim#6216)
https://github.com/vim/vim/commit/e928366de5deca359fad779a4f740db703296302
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/quickfix.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index eb66d802ec..fab3b11430 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -1330,7 +1330,11 @@ Basic items %v virtual column number (finds a number representing screen column of the error (1 <tab> == 8 screen columns)) - %t error type (finds a single character) + %t error type (finds a single character): + e - error message + w - warning message + i - info message + n - note message %n error number (finds a number) %m error message (finds a string) %r matches the "rest" of a single-line file message %O/P/Q @@ -1401,6 +1405,7 @@ prefixes are: %E start of a multi-line error message %W start of a multi-line warning message %I start of a multi-line informational message + %N start of a multi-line note message %A start of a multi-line message (unspecified type) %> for next line start with current pattern again |efm-%>| %C continuation of a multi-line message |