Emacs 描述 vim 中的键
Vim 中是否有任何功能可以向我显示键盘快捷键在当前上下文中绑定的内容?类似于 emacs 中的描述键。
我正在尝试找出哪些键可以安全地重新绑定以及哪些键绑定到有用的东西。
Is there any feature in Vim which shows me what a keyboard shortcut is bound to in the current context? Something like describe-key in emacs.
I'm trying to find out which keys i can safely rebind and which are bound to something useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的按键是手动映射的,您可以通过调用来检查映射:
如果不是,那么您可以检查手册:
If your key is manually mapped, you can check the mapping by evoking:
if it is not, then you can check the manual:
第一个谷歌搜索说:
有没有类似的东西vim 中的“描述键”(EMacs)?
:h ^X
要查看按键的映射方式,您可以使用
:map
,或者仅使用:map
来查看所有非按键序列默认绑定。键的映射可能包含重要的序列,因此您可能需要使用:h
查找映射中使用的其他几个键,如上所述。The first google hit says:
is there anything like "describe-key" (EMacs) in vim ?
:h ^X
To see how a key is mapped, you can use
:map <whatever key sequence>
, or just:map
to see all non-default bindings. Mappings of keys may contain non-trivial sequences, so you might need to look up several other keys used in the mapping with:h
as said above.