我要绑定
(defun switch-to-next-frame ()
"Select the next frame on current display, and raise it."
(interactive)
(other-frame 1)
)
在M-s
emacs中?我试过:
(global-unset-key "\M-s")
但它不起作用。问题是 -M-s
是前缀键。
编辑 2:
我把自己弄得很不清楚。我想绑定switch-to-next-frame
到M-s
。我试过:
(global-set-key (kbd "M-s") 'switch-to-next-frame)
它没有用:M-s-
当我按下时, emacs正在做M-s
。我想 - 问题是M-s
作为前缀键。我厌倦了解开它 - 但它没有成功。然后我来到这里问了这个问题。正如我后来发现的那样——问题出在我的身上.emacs
——当我注释掉icicles
它时,一切都开始按预期工作了。
编辑 3:
实际上 dired 是真的使用M-s
前缀键:
M-s a Prefix Command
M-s f Prefix Command
M-s f C-s dired-isearch-filenames
M-s f ESC Prefix Command
M-s a C-s dired-do-isearch
M-s a ESC Prefix Command
M-s f C-M-s dired-isearch-filenames-regexp
M-s a C-M-s dired-do-isearch-regexp
所以绑定女士是一个非常糟糕的主意。