@@ -509,14 +509,14 @@ Summary: *help-summary* >
509509
510510 1) Use Ctrl-D after typing a topic and let Vim show all available topics.
511511 Or press Tab to complete: >
512- :help some<Tab>
512+ :help some<Tab>
513513< More information on how to use the help: >
514514 :help helphelp
515515
516516 2) Follow the links in bars to related help. You can go from the detailed
517517 help to the user documentation, which describes certain commands more from
518518 a user perspective and less detailed. E.g. after: >
519- :help pattern.txt
519+ :help pattern.txt
520520< You can see the user guide topics | 03.9 | and | usr_27.txt | in the
521521 introduction.
522522
@@ -528,27 +528,27 @@ Summary: *help-summary* >
528528< to open the help page which describes all option handling and then search
529529 using regular expressions, e.g. textwidth.
530530 Certain options have their own namespace, e.g.: >
531- :help cpo-<letter>
531+ :help cpo-<letter>
532532< for the corresponding flag of the 'cpoptions' settings, substitute <letter>
533533 by a specific flag, e.g.: >
534- :help cpo-;
534+ :help cpo-;
535535< And for the guioption flags: >
536- :help go-<letter>
536+ :help go-<letter>
537537
538538 4) Normal mode commands do not have a prefix. To go to the help page for the
539539 "gt" command: >
540- :help gt
540+ :help gt
541541
542542 5) Insert mode commands start with i_. Help for deleting a word: >
543- :help i_CTRL-W
543+ :help i_CTRL-W
544544
545545 6) Visual mode commands start with v_. Help for jumping to the other side of
546546 the Visual area: >
547- :help v_o
547+ :help v_o
548548
549549 7) Command line editing and arguments start with c_. Help for using the
550550 command argument %: >
551- :help c_%
551+ :help c_%
552552
553553 8) Ex-commands always start with ":", so to go to the ":s" command help: >
554554 :help :s
@@ -559,56 +559,56 @@ Summary: *help-summary* >
559559
560560 10) Key combinations. They usually start with a single letter indicating
561561 the mode for which they can be used. E.g.: >
562- :help i_CTRL-X
562+ :help i_CTRL-X
563563< takes you to the family of CTRL-X commands for insert mode which can be
564564 used to auto-complete different things. Note, that certain keys will
565565 always be written the same, e.g. Control will always be CTRL.
566566 For normal mode commands there is no prefix and the topic is available at
567567 :h CTRL-< Letter>. E.g. >
568- :help CTRL-W
568+ :help CTRL-W
569569< In contrast >
570570 :help c_CTRL-R
571571< will describe what the CTRL-R does when entering commands in the Command
572572 line and >
573- :help v_CTRL-A
573+ :help v_CTRL-A
574574< talks about incrementing numbers in visual mode and >
575575 :help g_CTRL-A
576576< talks about the "g<C-A> " command (e.g. you have to press "g" then
577- <CTRL-A> ). Here the "g" stand for the normal command "g" which always
577+ <CTRL-A> ). Here the "g" stands for the normal command "g" which always
578578 expects a second key before doing something similar to the commands
579- starting with "z"
579+ starting with "z".
580580
58158111) Regexp items always start with /. So to get help for the "\+" quantifier
582582 in Vim regexes: >
583- :help /\+
583+ :help /\+
584584< If you need to know everything about regular expressions, start reading
585585 at: >
586- :help pattern.txt
586+ :help pattern.txt
587587
588588 12) Registers always start with "quote". To find out about the special ":"
589589 register: >
590- :help quote:
590+ :help quote:
591591
592592 13) Vim script is available at >
593593 :help eval.txt
594- < Certain aspects of the language are available at :h expr-X where "X" is a
595- single letter. E.g. >
596- :help expr-!
597- < will take you to the topic describing the "!" (Not) operator for
598- VimScript .
599- Also important is >
600- :help function-list
601- < to find a short description of all functions available. Help topics for
602- Vim script functions always include the "()", so: >
603- :help append()
604- < talks about the append Vim script function rather than how to append text
605- in the current buffer.
594+ < Certain aspects of the language are available at :h expr-X where "X" is a
595+ single letter. E.g. >
596+ :help expr-!
597+ < will take you to the topic describing the "!" (Not) operator for Vim
598+ script .
599+ Also important is >
600+ :help function-list
601+ < to find a short description of all functions available. Help topics for
602+ Vim script functions always include the "()", so: >
603+ :help append()
604+ < talks about the append Vim script function rather than how to append text
605+ in the current buffer.
606606
60760714) Mappings are talked about in the help page :h | map.txt | . Use >
608- :help mapmode-i
608+ :help mapmode-i
609609< to find out about the | :imap | command. Also use :map-topic
610610 to find out about certain subtopics particular for mappings. e.g: >
611- :help :map-local
611+ :help :map-local
612612< for buffer-local mappings or >
613613 :help map-bar
614614< for how the '|' is handled in mappings.
@@ -619,7 +619,7 @@ Summary: *help-summary* >
619619
62062016) Window management commands always start with CTRL-W , so you find the
621621 corresponding help at :h CTRL-W _letter. E.g. >
622- :help CTRL-W_p
622+ :help CTRL-W_p
623623< for moving the previous accessed window. You can also access >
624624 :help windows.txt
625625< and read your way through if you are looking for window handling
@@ -628,30 +628,30 @@ Summary: *help-summary* >
62862817) Use | :helpgrep | to search in all help pages (and also of any installed
629629 plugins). See | :helpgrep | for how to use it.
630630 To search for a topic: >
631- :helpgrep topic
631+ :helpgrep topic
632632< This takes you to the first match. To go to the next one: >
633633 :cnext
634634< All matches are available in the quickfix window which can be opened
635635 with: >
636- :copen
636+ :copen
637637< Move around to the match you like and press Enter to jump to that help.
638638
63963918) The user manual. This describes help topics for beginners in a rather
640640 friendly way. Start at | usr_toc.txt | to find the table of content (as you
641641 might have guessed): >
642- :help usr_toc.txt
642+ :help usr_toc.txt
643643< Skim over the contents to find interesting topics. The "Digraphs" and
644644 "Entering special characters" items are in chapter 24, so to go to that
645645 particular help page: >
646- :help usr_24.txt
646+ :help usr_24.txt
647647< Also if you want to access a certain chapter in the help, the chapter
648648 number can be accessed directly like this: >
649- :help 10.1
649+ :help 10.1
650650< which goes to chapter 10.1 in | usr_10.txt | and talks about recording
651651 macros.
652652
65365319) Highlighting groups. Always start with hl-groupname. E.g. >
654- :help hl-WarningMsg
654+ :help hl-WarningMsg
655655< talks about the WarningMsg highlighting group.
656656
65765720) Syntax highlighting is namespaced to :syn-topic. E.g. >
@@ -662,24 +662,24 @@ Summary: *help-summary* >
662662 usually start with :l
663663
66466422) Autocommand events can be found by their name: >
665- :help BufWinLeave
665+ :help BufWinLeave
666666< To see all possible events: >
667667 :help autocommand-events
668668
669669 23) Command-line switches always start with "-". So for the help of the -f
670670 command switch of Vim use: >
671- :help -f
671+ :help -f
672672
673673 24) Optional features always start with "+". To find out about the
674674 conceal feature use: >
675- :help +conceal
675+ :help +conceal
676676
677677 25) Documentation for included filetype specific functionality is usually
678- available in the form ft-<filetype> -<functionality> . So >
679- :help ft-c-syntax
678+ available in the form ft-<filetype> -<functionality> . So >
679+ :help ft-c-syntax
680680< talks about the C syntax file and the option it provides. Sometimes,
681681 additional sections for omni completion >
682- :help ft-php-omni
682+ :help ft-php-omni
683683< or filetype plugins >
684684 :help ft-tex-plugin
685685< are available.
@@ -691,7 +691,7 @@ Summary: *help-summary* >
691691< talks about the warning "Changing a readonly file".
692692 Sometimes, however, those error codes are not described, but rather are
693693 listed at the Vim command that usually causes this. So: >
694- :help E128
694+ :help E128
695695< takes you to the | :function | command
696696
697697
0 commit comments