comparison runtime/doc/quickfix.txt @ 97:d4f3db33d782 v7.0037

updated for version 7.0037
author vimboss
date Tue, 11 Jan 2005 21:34:41 +0000
parents 8173ec1e9f1f
children f67f8a8d81ba
comparison
equal deleted inserted replaced
96:8f25c0d2210f 97:d4f3db33d782
1 *quickfix.txt* For Vim version 7.0aa. Last change: 2005 Jan 08 1 *quickfix.txt* For Vim version 7.0aa. Last change: 2005 Jan 10
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
298 the error list to the matches. 298 the error list to the matches.
299 {pattern} if a Vim search pattern. Instead of 299 {pattern} if a Vim search pattern. Instead of
300 enclosing it in / any non-ID character |'isident'| 300 enclosing it in / any non-ID character |'isident'|
301 can be used, so long as it does not appear in 301 can be used, so long as it does not appear in
302 {pattern}. 302 {pattern}.
303 'ignorecase' applies. To overrule it use |/\c| to
304 ignore case or |/\C| to match case. 'smartcase' is
305 not used.
303 Examples: > 306 Examples: >
304 :vimgrep /an error/ *.c 307 :vimgrep /an error/ *.c
305 :vimgrep /\<FileName\>/ *.h include/* 308 :vimgrep /\<FileName\>/ *.h include/*
306 309
307 :vim[grep][!] {pattern} {file} ... 310 :vim[grep][!] {pattern} {file} ...