How to open chapters of Vim user manual in Vim

vim
6,419

Solution 1

To navigate to the section under the cursor, you use Ctrl] (that's a right bracket, not a j):

JUMPING AROUND
The text contains hyperlinks between the two parts, allowing you to quickly jump between the description of an editing task and a precise explanation of the commands and options used for it. Use these two commands:
Press  CTRL-]  to jump to a subject under the cursor.
Press  CTRL-O  to jump back (repeat to go further back).

http://vimdoc.sourceforge.net/vimum.html

Solution 2

:h usr_01.txt and so on should do it for you.

Share:
6,419

Related videos on Youtube

Leahcim
Author by

Leahcim

I'm pretty hopeless at programming but I'm enjoying trying to learn it (rails, php, javascript, jquery)... Backbone underscore twitterbootsrap http://jsfiddle.net/mjmitche/RRXnK/119/

Updated on September 18, 2022

Comments

  • Leahcim
    Leahcim over 1 year

    I opened the Vim user manual with the :h user-manual | only command (to open it in one window) and now I want to enter/open the separate text files. I tried to put my cursor over a section, such as |usr_01.txt| , and press CTRL-j but nothing happened.

    Overview ~
    
    Getting Started
    |usr_01.txt|  About the manuals
    |usr_02.txt|  The first steps in Vim
    |usr_03.txt|  Moving around
    |usr_04.txt|  Making small changes
    |usr_05.txt|  Set your settings
    |usr_06.txt|  Using syntax highlighting 
    |usr_07.txt|  Editing more than one file
    |usr_08.txt|  Splitting windows
    
  • Fedor Rusak
    Fedor Rusak over 3 years
    This really helped! Now after vimtutor end I can check internal help info!