web-dev-qa-db-ja.com

ロード後のeval対モードフック

eval-after-loadを使用したモードの設定とモードフックの使用に違いはありますか?

メジャーモードフック内でdefine-keyが使用されているコードや、define-keyeval-after-load形式で使用されているコードをいくつか見ました。


更新:

理解を深めるために、org-modeでeval-after-loadおよびmodeフックを使用する例を次に示します。コードはbefore(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 for the variables don't say what to do.
;; Or use Customize interface.
(setq org-hide-leading-stars t)
(setq org-return-follows-link t)

;; "org" because C-h f org-mode RET says that org-mode is defined in org.el
(eval-after-load "org"
  '(progn
     ;; Establishing your own keybindings for org-mode.
     ;; Variable org-mode-map is available only after org.el or org.elc is loaded.
     (define-key org-mode-map (kbd "<C-M-return>") 'org-insert-heading-respect-content)
     (define-key org-mode-map (kbd "<M-right>") nil) ; erasing a keybinding.
     (define-key org-mode-map (kbd "<M-left>") nil) ; erasing a keybinding.

     (defun my-org-mode-hook ()
       ;; The following two lines of code is run from the mode hook.
       ;; These are for buffer-specific things.
       ;; In this setup, you want to enable flyspell-mode
       ;; and run org-reveal for every org buffer.
       (flyspell-mode 1)
       (org-reveal))
     (add-hook 'org-mode-hook 'my-org-mode-hook)))
71
Yoo

eval-after-loadでラップされたコードは1回だけ実行されるため、通常はデフォルトのグローバル値や動作の設定など、1回限りの設定を実行するために使用されます。例としては、特定のモードのデフォルトのキーマップを設定することが考えられます。 eval-after-loadコードでは、「現在のバッファ」という概念はありません。

モードフックは、モードが有効になっているすべてのバッファーに対して1回実行されるため、バッファーごとの構成に使用されます。したがって、モードフックはeval-after-loadコードよりも後に実行されます。これにより、現在のバッファで他のモードが有効になっているかどうかなどの情報に基づいてアクションを実行できます。

93
sanityinc