1
加载后评估与模式挂钩
eval-after-load使用模式挂钩和使用模式挂钩为东西设置东西之间有区别吗? 我已经看到了在define-key主要模式挂钩中使用的一些代码,以及define-key在eval-after-load表单中使用的其他一些代码。 更新: 为了更好地理解,这是将eval-after-load和mode挂钩与org-mode一起使用的示例。该代码可以运行之前 (load "org")或(require 'org)或(package-initialize)。 ;; The following two lines of code set some org-mode options. ;; Usually, these can be outside (eval-after-load ...) and work. ;; In cases that doesn't work, try using setq-default or set-variable ;; and putting them in (eval-after-load ...), if the ;; doc …