Emacs 描述 vim 中的键

发布于 2024-10-18 10:21:57 字数 101 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苏璃陌 2024-10-25 10:21:57

如果您的按键是手动映射的,您可以通过调用来检查映射:

:map <keys>

如果不是,那么您可以检查手册:

:help <keys>

If your key is manually mapped, you can check the mapping by evoking:

:map <keys>

if it is not, then you can check the manual:

:help <keys>
半步萧音过轻尘 2024-10-25 10:21:57

第一个谷歌搜索

有没有类似的东西vim 中的“描述键”(EMacs)?

最简单的可能是 Vim 帮助系统。例如:

:h ^X

描述 Ctrl-X。您必须输入“^X”作为两个字符,而不是一个。

要查看按键的映射方式,您可以使用 :map,或者仅使用 :map 来查看所有非按键序列默认绑定。键的映射可能包含重要的序列,因此您可能需要使用 :h 查找映射中使用的其他几个键,如上所述。

The first google hit says:

is there anything like "describe-key" (EMacs) in vim ?

The simplest might be the Vim help system. For example:

:h ^X

describes Ctrl-X. You have to type "^X" as two characters, not one.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文