diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-08 21:32:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-08 21:32:40 +0000 |
commit | a3227e2b15600b2303e3aac070803021e76ed6d5 (patch) | |
tree | 28e62d3adfb3021ca3b92b6f86cb772d4a0ae9c8 /runtime/doc/quickfix.txt | |
parent | 1f35bf9cab16d3f3a63c47894c69c9aa699d8145 (diff) | |
download | vim-git-a3227e2b15600b2303e3aac070803021e76ed6d5.tar.gz |
updated for version 7.0218v7.0218
Diffstat (limited to 'runtime/doc/quickfix.txt')
-rw-r--r-- | runtime/doc/quickfix.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index 5a8370057..76e0454ef 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -1,4 +1,4 @@ -*quickfix.txt* For Vim version 7.0aa. Last change: 2006 Mar 07 +*quickfix.txt* For Vim version 7.0aa. Last change: 2006 Mar 08 VIM REFERENCE MANUAL by Bram Moolenaar @@ -478,8 +478,13 @@ advantages are: - Uses Vim search patterns. Multi-line patterns can be used. - When plugins are enabled: compressed and remote files can be searched. |gzip| |netrw| -- When 'hidden' is set the files are kept loaded, thus repeating a search is - much faster. Uses a lot of memory though! + +To be able to do this Vim loads each file as if it is being edited. When +there is no match in the file the assicated buffer is wiped out again. The +'hidden' option is ignored here to avoid running out of memory or file +descriptors when searching many files. However, when the |:hide| command +modifier is used the buffers are kept loaded. This makes following searches +in the same files a lot faster. 5.1 using Vim's internal grep |