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.
我似乎无法在 Emacs 中重新绑定 ctrl-ret。我广泛搜索了谷歌,但在少数情况下,有一些如何重新绑定它的例子,那个例子不起作用。我想取消当前绑定,并用新绑定替换它。我该怎么做呢?
我广泛搜索了谷歌,但在少数情况下,有一些如何重新绑定它的例子,那个例子不起作用。
你试过什么没用?这适用于我在 Windows 7 上的 Emacs 24 中:
(global-set-key [(control return)] 'foobar)
更新: cua-mode uses define-key,试试这个:
define-key
(define-key cua-global-keymap cua-rectangle-mark-key 'foobar)