summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2018-08-04 10:17:40 -0400
committerKyle Meyer <kyle@kyleam.com>2018-12-09 12:30:26 -0500
commitf068d95816878e4335f7ce293c2e93e639d5d197 (patch)
tree79e6c1af159ba1af1f5c793a50143b577c86b105 /init.el
parent6474a25cda7585a611172320b84a137e50749cfc (diff)
downloademacs.d-f068d95816878e4335f7ce293c2e93e639d5d197.tar.gz
Delete some infrequently used custom Magit commands
I used many of these heavily at some point, but due to some combination of changes in my preferences/workflows and changes in Magit, I rarely use any of these now.
Diffstat (limited to 'init.el')
-rw-r--r--init.el16
1 files changed, 1 insertions, 15 deletions
diff --git a/init.el b/init.el
index 9324359..35ee213 100644
--- a/init.el
+++ b/init.el
@@ -1171,10 +1171,6 @@
(magit-define-popup-action 'magit-commit-popup
?u "Auto commit" #'km/magit-update-or-auto-commit)
- (magit-define-popup-action 'magit-push-popup
- ?a "Push all" #'km/magit-push-all)
- (magit-define-popup-action 'magit-push-popup
- ?h "Push HEAD" #'km/magit-push-head)
(magit-change-popup-key 'magit-push-popup :action
?u ?U)
(magit-change-popup-key 'magit-push-popup :action
@@ -1198,21 +1194,11 @@
?e "Edit message" #'km/magit-stash-edit-message)
(magit-define-popup-action 'magit-branch-popup
- ?K "Delete previous branch" #'km/magit-delete-previous-branch)
- (magit-define-popup-action 'magit-branch-popup
?m "Checkout master" #'km/magit-checkout-master)
(magit-define-popup-action 'magit-branch-popup
- ?n "Checkout recent ref" #'km/magit-checkout-recent-ref)
- (magit-define-popup-action 'magit-branch-popup
- ?N "Track recent ref" #'km/magit-checkout-track-recent-ref)
- (magit-define-popup-action 'magit-branch-popup
- ?l "Checkout previous" #'km/magit-checkout-previous-branch)
- (magit-define-popup-action 'magit-branch-popup
?r "Rename branch" #'km/magit-branch-rename)
(magit-define-popup-action 'magit-branch-popup
- ?s "Backup current branch" #'km/magit-branch-backup-current)
- (magit-define-popup-action 'magit-branch-popup
- ?t "Local tracking" #'km/magit-checkout-local-tracking))
+ ?s "Backup current branch" #'km/magit-branch-backup-current))
(use-package magit-annex
:load-path "~/src/emacs/magit-annex/"