diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-24 19:03:31 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 09:21:31 -0400 |
commit | 527d108223e50c3fab034b582c102475b16c016e (patch) | |
tree | e355fe3e9781a228503bd038f40418063392edb7 /runtime/doc/quickfix.txt | |
parent | 3e47e529b0354dbd665202bbc4f485a5160206bf (diff) | |
download | rneovim-527d108223e50c3fab034b582c102475b16c016e.tar.gz rneovim-527d108223e50c3fab034b582c102475b16c016e.tar.bz2 rneovim-527d108223e50c3fab034b582c102475b16c016e.zip |
vim-patch:664f3cf3f21d
Runtime file updates.
https://github.com/vim/vim/commit/664f3cf3f21d3699bfd179c318ef5c869c085648
Diffstat (limited to 'runtime/doc/quickfix.txt')
-rw-r--r-- | runtime/doc/quickfix.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index a60e3d4b60..294a90306a 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -311,7 +311,7 @@ processing a quickfix or location list command, it will be aborted. *:cex* *:cexpr* *E777* :cex[pr][!] {expr} Create a quickfix list using the result of {expr} and jump to the first error. - If {expr} is a String, then each new-line terminated + If {expr} is a String, then each newline terminated line in the String is processed using the global value of 'errorformat' and the result is added to the quickfix list. @@ -1090,7 +1090,7 @@ id-utils) in a similar way to its compiler integration (see |:make| above). allowed with |:bufdo|. An example that uses the argument list and avoids errors for files without matches: > - :silent argdo try + :silent argdo try \ | grepadd! something % \ | catch /E480:/ \ | endtry" |