Vim:列出免费的键绑定
有什么方法可以列出未使用的按键绑定吗? 我想如果答案是否定的,这将是一个很好的功能请求(特别是对于像我这样犹豫不决的类型)。
编辑: 为了使其更精确,我知道您可以使用以下命令列出绑定:
:map
:nmap
:imap
FFI see:
:help map-modes
:手动检查是否使用给定的绑定
:help Ctrl-w
:help ^w
并通过键入例如: FFI see
:help map
Is there some way to list unused keybinds?
I guess if the answer is no, it would be a good feature-request (especially for these undecided types like myself).
Edit:
To make it more precise, I know you can list bindings with:
:map
:nmap
:imap
FFI see:
:help map-modes
and manually check whether given binding is used by typing e.g.:
:help Ctrl-w
:help ^w
FFI see:
:help map
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,没有办法列出未使用的键绑定(这将
不可能,因为它们的数量是无限的)。
但如果您想反其道而行之,您可以键入:
列出用户定义的键绑定。
另外,如果您键入,
您可以检查某些键绑定是否已分配给 vim 中的函数。
To my knowledge there is no way to list the unused key-bindings (this would
be impossible because there is an infinite number of them).
But if you want to go the other way around you can type:
to list the user defined key-bindings.
Also if you type
you can check if some key-binding is already assigned to a function in vim.