comparison runtime/doc/quickfix.txt @ 2698:b6471224d2af

Updated runtime files and translations.
author Bram Moolenaar <bram@vim.org>
date Wed, 09 Feb 2011 17:07:58 +0100
parents 7d8af31066c8
children c869ff170ddc
comparison
equal deleted inserted replaced
2697:6cc8a093e4a9 2698:b6471224d2af
1 *quickfix.txt* For Vim version 7.3. Last change: 2010 Oct 20 1 *quickfix.txt* For Vim version 7.3. Last change: 2011 Feb 01
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
546 modifier is used the buffers are kept loaded. This makes following searches 546 modifier is used the buffers are kept loaded. This makes following searches
547 in the same files a lot faster. 547 in the same files a lot faster.
548 548
549 Note that |:copen| (or |:lopen| for |:lgrep|) may be used to open a buffer 549 Note that |:copen| (or |:lopen| for |:lgrep|) may be used to open a buffer
550 containing the search results in linked form. The |:silent| command may be 550 containing the search results in linked form. The |:silent| command may be
551 used to suppress the default full screen grep output. The |:grep!| form of 551 used to suppress the default full screen grep output. The ":grep!" form of
552 the |:grep| command doesn't jump to the first match automatically. These 552 the |:grep| command doesn't jump to the first match automatically. These
553 commands can be combined to create a NewGrep command: > 553 commands can be combined to create a NewGrep command: >
554 554
555 command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42 555 command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42
556 556