在 Vim 中访问特定帮助文件的正确方法是什么?

在 Vim 中访问特定帮助文件的正确方法是什么?

在 Vim 中,如果您:help在状态栏中输入,您会看到一个窗口(内容被截断为相关位):

*help.txt*      For Vim version 7.4.  Last change: 2012 Dec 06

                    VIM - main help file

...

USER MANUAL: These files explain how to accomplish an editing task.

Jump to a subject:  Position the cursor on a tag (e.g. |bars|) and hit CTRL-].


|usr_toc.txt|   Table Of Contents

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
|usr_09.txt|  Using the GUI

假设我想查看有关此项目的更多信息|usr_07.txt|,我该输入什么命令?

我试过这个:

跳至主题:将光标置于标签上(例如|bars|)并按CTRL-]。

但我的终端窗口已映射ctrl -到“减少文本”。

答案1

您可以使用

:help usr_01.txt

访问特定文件。通常更有用的是,您可以跳转到特定主题:

:help syntax
:help wq
:help CTRL-]

最后这个请注意,您也可以使用Ctrl-Click鼠标,双击也可以。

还可以使用g]访问标签选择,它提供了一个列表,您可以仅使用数字和 进行选择Enter。在许多情况下,这将是一个项目的列表,但它仍然避免Ctrl-]在任何时候使用。

您还可以使用一些其他命令来跟踪这些链接列于:help tagsrch.txt

答案2

CTRL-]表示按住control并敲击]按键(不是-)。

答案3

Paul 上面的回答解释了如何在 vim 帮助中从一个链接跳转到另一个链接,但是如果您知道要打开的内容,您也可以直接打开文件,例如,:help usr_01.txt

相关内容