Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • How do you go to a specific page in the user-manual? I tried vim -c help usr_05.txt -c only but that just takes you to the start of help.txt. So you still need to move your cursor to the tag for the page title in the table of contents and jump to it with <CTRL-]> Commented Sep 29, 2019 at 23:14
  • Try quoting the chapter, together with the help command, vim -c 'help usr_05.txt' Commented Sep 30, 2019 at 9:03
  • Okay that worked. I guess commands that take an argument need to be wrapped in double quotes, which is great because now I can jump straight to a specific section with the tag command, :ta. Say I want to view just section 7.2 of the user manual, then I could run vim -c help -c "ta 07.2" -c only Commented Oct 1, 2019 at 2:22