Skip to content

Commit

Permalink
refactor: move transient to the end of me-builtin
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 9, 2023
1 parent 9240670 commit e7d7d07
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions core/me-builtin.el
Original file line number Diff line number Diff line change
Expand Up @@ -236,13 +236,6 @@ or file path may exist now."
;; More info on completions
(completions-detailed t))

(use-package transient
:straight (:type built-in)
:config
;; Map ESC and q to quit transient
(keymap-set transient-map "<escape>" 'transient-quit-one)
(keymap-set transient-map "q" 'transient-quit-one))

(use-package map
:straight (:type built-in))

Expand Down Expand Up @@ -1756,6 +1749,13 @@ Useful for quickly switching to an open buffer."
(dolist (command '(scroll-up-command scroll-down-command recenter-top-bottom other-window))
(advice-add command :after #'+pulse-line)))

(use-package transient
:straight (:type built-in)
:config
;; Map ESC and q to quit transient
(keymap-set transient-map "<escape>" 'transient-quit-one)
(keymap-set transient-map "q" 'transient-quit-one))


(provide 'me-builtin)

Expand Down

0 comments on commit e7d7d07

Please sign in to comment.