mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix enter/exit window/buffer hook names
This commit is contained in:
10
core/core.el
10
core/core.el
@ -245,21 +245,21 @@ else (except for `window-setup-hook').")
|
||||
"Hook run when the theme (and font) is initialized (or reloaded
|
||||
with `doom/reload-theme').")
|
||||
|
||||
(defvar doom-before-switch-window-hook nil
|
||||
(defvar doom-exit-window-hook nil
|
||||
"Hook run before `switch-window' or `switch-frame' are called. See
|
||||
`doom-enter-window-hook'.")
|
||||
|
||||
(defvar doom-after-switch-window-hook nil
|
||||
(defvar doom-enter-window-hook nil
|
||||
"Hook run after `switch-window' or `switch-frame' are called. See
|
||||
`doom-exit-window-hook'.")
|
||||
|
||||
(defvar doom-before-switch-buffer-hook nil
|
||||
(defvar doom-exit-buffer-hook nil
|
||||
"Hook run after `switch-to-buffer', `pop-to-buffer' or `display-buffer' are
|
||||
called. The buffer to be switched to is current when these hooks run.
|
||||
|
||||
Also see `doom-after-switch-buffer-hook'.")
|
||||
Also see `doom-enter-buffer-hook'.")
|
||||
|
||||
(defvar doom-after-switch-buffer-hook nil
|
||||
(defvar doom-enter-buffer-hook nil
|
||||
"Hook run before `switch-to-buffer', `pop-to-buffer' or `display-buffer' are
|
||||
called. The buffer to be switched to is current when these hooks run.
|
||||
|
||||
|
Reference in New Issue
Block a user