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 -
到“減少文本”。
您可以使用
:help usr_01.txt
訪問特定文件。通常更有用的是,您可以跳轉到特定主題:
:help syntax :help wq :help CTRL-]
最後一點,您也可以使用
Ctrl-Click
滑鼠,點兩下也可以。您還可以使用
g]
訪問tagselect,它提供了一個列表,您可以從其中選擇只有數字 和Enter
。在許多情況下,這將是一個項目的列表,但它仍然避免Ctrl-]
在任何時候使用。您可以用來跟隨這些連結的一些其他命令也列在
:help tagsrch.txt
.