comparison runtime/doc/various.txt @ 9:4102fb4ea781 v7.0002

updated for version 7.0002
author vimboss
date Sun, 20 Jun 2004 12:51:53 +0000
parents 7edf9b6e4c36
children 946da5994c01
comparison
equal deleted inserted replaced
8:7edf9b6e4c36 9:4102fb4ea781
1 *various.txt* For Vim version 7.0aa. Last change: 2004 Jun 14 1 *various.txt* For Vim version 7.0aa. Last change: 2004 Jun 18
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
569 :h[elp]! [subject] Like ":help", but in non-English help files prefer to 569 :h[elp]! [subject] Like ":help", but in non-English help files prefer to
570 find a tag in a file with the same language as the 570 find a tag in a file with the same language as the
571 current file. See |help-translated|. 571 current file. See |help-translated|.
572 572
573 *:helpg* *:helpgrep* 573 *:helpg* *:helpgrep*
574 :helpg[rep] {pattern} 574 :helpg[rep] {pattern}[@xx]
575 Search all help text files and make a list of lines 575 Search all help text files and make a list of lines
576 in which {pattern} matches. Jumps to the first match. 576 in which {pattern} matches. Jumps to the first match.
577 The optional [@xx] specifies that only matches in the
578 "xx" language are to be found.
577 You can navigate through the matches with the 579 You can navigate through the matches with the
578 |quickfix| commands, e.g., |:cnext| to jump to the 580 |quickfix| commands, e.g., |:cnext| to jump to the
579 next one. Or use |:cwindow| to get the list of 581 next one. Or use |:cwindow| to get the list of
580 matches in the quickfix window. 582 matches in the quickfix window.
581 {pattern} is used as a Vim regexp |pattern|. 583 {pattern} is used as a Vim regexp |pattern|.
582 'ignorecase' is not used, add "\c" to ignore case. 584 'ignorecase' is not used, add "\c" to ignore case.
583 Example for case sensitive search: > 585 Example for case sensitive search: >
584 :helpgrep Uganda 586 :helpgrep Uganda
585 < Example for case ignoring search: > 587 < Example for case ignoring search: >
586 :helpgrep uganda\c 588 :helpgrep uganda\c
589 < Example for searching in French help: >
590 :helpgrep backspace@fr
587 < Cannot be followed by another command, everything is 591 < Cannot be followed by another command, everything is
588 used as part of the pattern. But you can use 592 used as part of the pattern. But you can use
589 |:execute| when needed. 593 |:execute| when needed.
590 Compressed help files will not be searched (Debian 594 Compressed help files will not be searched (Debian
591 compresses the help files). 595 compresses the help files).