Emacs:如何在.emacs文件中定义和初始化自定义变量

时间:2015-01-04 15:45:04

标签: emacs initialization

我认为我的emacs可能无法读取〜/ .emacs初始化文件。我想把这个理论付诸实践。欢迎任何建议。但是,我提出了以下想法。

假设我在〜/ .emacs文件中定义并初始化自定义布尔变量。然后,我可以通过发出命令C-h v <custom variable name> RET

,在emacs打开后检查此变量的值

所以我的问题是:如何在我的init文件中定义和初始化自定义布尔变量?是通过在文件底部添加以下行:

(setq <custom variable name> t)

我应该补充说,以下空括号出现在我的init文件的开头:

(custom-set-variables
 ;; custom-set-variables was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 )

1 个答案:

答案 0 :(得分:1)

(setq <custom variable name> t)方法可以正常使用。或者,您只需在.emacs

中发出消息即可
(message "successfully loaded .emacs")

然后检查*Messages*缓冲区以确保消息存在。