diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-21 21:48:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-21 21:48:09 +0100 |
commit | d6357e8f93c50f984ffd69c3a0d247d8603f86c3 (patch) | |
tree | bdbaf3d799ea65c6e31d31ab319d5abef48adb7a /runtime | |
parent | e5f2be61595fbbba77261f3bf1e032fe03a1966d (diff) | |
download | vim-d6357e8f93c50f984ffd69c3a0d247d8603f86c3.zip |
patch 7.4.1149
Problem: Using the local value of 'errorformat' causes more problems than
it solves.
Solution: Revert 7.4.1013.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/quickfix.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index 674470e59..5436a809a 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -217,9 +217,9 @@ command with 'l'. :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 - line in the String is processed using the value - of 'errorformat' (buffer-local value if it was set) - and the result is added to the quickfix list. + line in the String is processed using the global value + of 'errorformat' and the result is added to the + quickfix list. If {expr} is a List, then each String item in the list is processed and added to the quickfix list. Non String items in the List are ignored. |