comparison runtime/doc/quickfix.txt @ 123:f67f8a8d81ba

updated for version 7.0043
author vimboss
date Fri, 21 Jan 2005 11:55:25 +0000
parents d4f3db33d782
children 06bc859d1a32
comparison
equal deleted inserted replaced
122:56eb9755174b 123:f67f8a8d81ba
1 *quickfix.txt* For Vim version 7.0aa. Last change: 2005 Jan 10 1 *quickfix.txt* For Vim version 7.0aa. Last change: 2005 Jan 20
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
286 - Line separators and encoding are automatically recognized, as if a file is 286 - Line separators and encoding are automatically recognized, as if a file is
287 being edited. 287 being edited.
288 - Uses Vim search patterns. Multi-line patterns can be used. 288 - Uses Vim search patterns. Multi-line patterns can be used.
289 - When plugins are enabled: compressed and remote files can be searched. 289 - When plugins are enabled: compressed and remote files can be searched.
290 |gzip| |netrw| 290 |gzip| |netrw|
291 - When 'hidden' is set the files are kept loaded, thus repeating a search is
292 much faster. Uses a lot of memory though!
291 293
292 294
293 5.1 using Vim's internal grep 295 5.1 using Vim's internal grep
294 296
295 *:vim* *:vimgrep* *E682* *E683* 297 *:vim* *:vimgrep* *E682* *E683*
301 can be used, so long as it does not appear in 303 can be used, so long as it does not appear in
302 {pattern}. 304 {pattern}.
303 'ignorecase' applies. To overrule it use |/\c| to 305 'ignorecase' applies. To overrule it use |/\c| to
304 ignore case or |/\C| to match case. 'smartcase' is 306 ignore case or |/\C| to match case. 'smartcase' is
305 not used. 307 not used.
308 Every second or so the searched file name is displayed
309 to give you an idea of the progress made.
306 Examples: > 310 Examples: >
307 :vimgrep /an error/ *.c 311 :vimgrep /an error/ *.c
308 :vimgrep /\<FileName\>/ *.h include/* 312 :vimgrep /\<FileName\>/ *.h include/*
309 313
310 :vim[grep][!] {pattern} {file} ... 314 :vim[grep][!] {pattern} {file} ...