diff options
author | Griffin Smith <root@gws.fyi> | 2023-02-27T15·13-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-02-27T15·16+0000 |
commit | c54c869778d08b863b004c372f6951ee5d1a6fbd (patch) | |
tree | 31dd2cf9424b1e834872cd173de51bcecfeebdd0 /users/grfn/emacs.d/config.el | |
parent | 0dcbf5dfb947c9b9c9238db0021655bcebc22798 (diff) |
chore(grfn/system): Upgrade emacs packages r/5859
Some interfaces changed in magit's transient, and doom switched more emphatically to rustic mode Change-Id: Ifb945f7fc693b0b7fb1739e25c6da70b06df96ef Reviewed-on: https://cl.tvl.fyi/c/depot/+/8161 Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'users/grfn/emacs.d/config.el')
-rw-r--r-- | users/grfn/emacs.d/config.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/users/grfn/emacs.d/config.el b/users/grfn/emacs.d/config.el index 9ddfe07afb95..da2ef48cd8fd 100644 --- a/users/grfn/emacs.d/config.el +++ b/users/grfn/emacs.d/config.el @@ -513,7 +513,7 @@ ;; :n "[ [" #'magit-section-backward ) - (define-suffix-command magit-commit-wip () + (transient-define-suffix magit-commit-wip () (interactive) (magit-commit-create '("-m" "wip"))) @@ -522,11 +522,11 @@ ["c"] (list "W" "Commit WIP" #'magit-commit-wip)) - (define-suffix-command magit-reset-head-back () + (transient-define-suffix magit-reset-head-back () (interactive) (magit-reset-mixed "HEAD~")) - (define-suffix-command magit-reset-head-previous () + (transient-define-suffix magit-reset-head-previous () (interactive) (magit-reset-mixed "HEAD@{1}")) |