Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如 backspace is<BS>和 tab is <Tab>,但是如果我不知道或不记得向上或向下箭头的顺序,我可以在哪里查找它们?
<BS>
<Tab>
两个:help技巧:
:help
在插入模式和命令行中,点击<C-v>后跟一些键会插入该键的内部符号。
<C-v>
例如,
:helpCtrl+v↑</kbd>
生产
:help <Up>
该:help命令支持完成,因此您可以键入与您想要的内容相关的关键字并点击<Tab>或<C-d>:
<C-d>
:help key<Tab>
我正要问这个,但后来我在帮助文件中随机找到了答案。所以这里适合那些正在寻找相同的人:
:help keycodes