Calling this pivotal macro "def-package!" has frequently been a source of confusion. It is a thin wrapper around use-package, and it should be obvious that it is so. For this reason, and to match the naming convention used with other convenience macros/wrappers, it is now use-package!. Also changes def-package-hook! -> use-package-hook! The old macros are now marked obsolete and will be removed when straight integration is merged.
29 lines
1 KiB
EmacsLisp
29 lines
1 KiB
EmacsLisp
;;; editor/objed/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! objed
|
|
:after-call pre-command-hook
|
|
:config
|
|
;; Prevent undo actions from exiting edit state
|
|
(add-to-list 'objed-keeper-commands 'undo-tree-undo)
|
|
(add-to-list 'objed-keeper-commands 'undo-tree-redo)
|
|
(add-to-list 'objed-keeper-commands 'undo-tree-visualize)
|
|
|
|
(defvar +objed--extra-face-remaps nil)
|
|
|
|
(def-advice! +objed-add-face-remaps-a (&rest _)
|
|
"Add extra face remaps when objed activates."
|
|
:after 'objed--init
|
|
(when (memq 'objed-hl (assq 'hl-line face-remapping-alist))
|
|
(push (face-remap-add-relative 'solaire-hl-line-face 'objed-hl)
|
|
+objed--extra-face-remaps)))
|
|
|
|
(def-advice! +objed-remove-face-remaps-a (&rest _)
|
|
"Remove extra face remaps when objed de-activates."
|
|
:after 'objed--reset
|
|
(unless (memq 'objed-hl (assq 'hl-line face-remapping-alist))
|
|
(dolist (remap +objed--extra-face-remaps)
|
|
(face-remap-remove-relative remap))
|
|
(setq +objed--extra-face-remaps nil)))
|
|
|
|
(unless (featurep! +manual)
|
|
(objed-mode +1)))
|