Skip to content

Commit

Permalink
refactor(vc): remove unneeded with-eval-after-load
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Mar 28, 2024
1 parent 8636072 commit 937d19d
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions modules/me-vc.el
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@

(use-package magit-imerge
:straight t
:after magit
:init
(with-eval-after-load 'magit
(transient-append-suffix 'magit-merge "m"
'("M" "magit-imerge" magit-imerge))))
(transient-append-suffix 'magit-merge "m" '("M" "magit-imerge" magit-imerge)))

(use-package closql
:straight t)
Expand Down Expand Up @@ -82,12 +81,9 @@
(code-review-log-file (concat minemacs-local-dir "code-review/code-review-error.log"))
(code-review-auth-login-marker 'forge) ; use the same credentials as forge in ~/.authinfo.gpg
:init
(with-eval-after-load 'magit
(transient-append-suffix 'magit-merge "i"
'("y" "Review pull-request" code-review-forge-pr-at-point)))
(transient-append-suffix 'magit-merge "i" '("y" "Review pull-request" code-review-forge-pr-at-point))
(with-eval-after-load 'forge
(transient-append-suffix 'forge-dispatch "c u"
'("c r" "review pull-request" code-review-forge-pr-at-point))))
(transient-append-suffix 'forge-dispatch "c u" '("c r" "review pull-request" code-review-forge-pr-at-point))))

(use-package jiralib2
:straight t
Expand Down

0 comments on commit 937d19d

Please sign in to comment.