如何为M-x color-theme- <tab> RET </tab>定义全局设置键

时间:2013-04-12 15:40:20

标签: emacs elisp emacs24

我无法找到如何结合M-x color-theme-<TAB> RET使用global-set-key的任何示例。我尝试了几种变化,但无济于事。是否可以在颜色主题的末尾插入标签?

(global-set-key "\C-ct" 'color-theme<TAB><RET>)

1 个答案:

答案 0 :(得分:1)

此键盘快捷键会弹出一个类似的屏幕,可以用鼠标点击。

(global-set-key (kbd "<f5>") 'color-theme-select)

在相关说明中:

Aquamacs 2.4禁用工具下的颜色主题菜单栏条目。因此,如果有人想要启用它,那么将其插入Preferences.el或init.el(如果有的话):

(easy-menu-add-item nil color-theme-entry-path "--")
(easy-menu-add-item  nil color-theme-entry-path
           ["Color Themes" color-theme-select t])

Aquamacs 2.4在其初始化的其他地方已经有了这个:

(require 'easymenu)

或者,用户可以在第513行至第516行从;;删除/Applications/Aquamacs.app/Contents/Resources/lisp/aquamacs/color-theme.el