comparison runtime/doc/quickfix.txt @ 717:2fa8cb05b861 v7.0218

updated for version 7.0218
author vimboss
date Wed, 08 Mar 2006 21:32:40 +0000
parents 8ae24f338cab
children e180933b876a
comparison
equal deleted inserted replaced
716:8ae24f338cab 717:2fa8cb05b861
1 *quickfix.txt* For Vim version 7.0aa. Last change: 2006 Mar 07 1 *quickfix.txt* For Vim version 7.0aa. Last change: 2006 Mar 08
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
476 - Line separators and encoding are automatically recognized, as if a file is 476 - Line separators and encoding are automatically recognized, as if a file is
477 being edited. 477 being edited.
478 - Uses Vim search patterns. Multi-line patterns can be used. 478 - Uses Vim search patterns. Multi-line patterns can be used.
479 - When plugins are enabled: compressed and remote files can be searched. 479 - When plugins are enabled: compressed and remote files can be searched.
480 |gzip| |netrw| 480 |gzip| |netrw|
481 - When 'hidden' is set the files are kept loaded, thus repeating a search is 481
482 much faster. Uses a lot of memory though! 482 To be able to do this Vim loads each file as if it is being edited. When
483 there is no match in the file the assicated buffer is wiped out again. The
484 'hidden' option is ignored here to avoid running out of memory or file
485 descriptors when searching many files. However, when the |:hide| command
486 modifier is used the buffers are kept loaded. This makes following searches
487 in the same files a lot faster.
483 488
484 489
485 5.1 using Vim's internal grep 490 5.1 using Vim's internal grep
486 491
487 *:vim* *:vimgrep* *E682* *E683* 492 *:vim* *:vimgrep* *E682* *E683*