我试图将热键定义如下
(global-set-key [(control shift up)] 'other-window)
但它不起作用(没有错误,只是不起作用),也没有
(global-set-key [(control shift down)] 'other-window)
但
(global-set-key [(control shift right)] 'other-window)
和
(global-set-key [(control shift left)] 'other-window)
工作!
但是因为最后两个组合键由 emacs 使用(默认),我不想将它们更改为其他功能。
那么我该如何制作control-shift-up和control-shift-down工作呢?
我用谷歌搜索了“(控制上移)”,似乎control-shift-up被其他人使用,(但不是很少的结果)。