Forked from jasonm23/magit-duet-commit.el
Last active
September 12, 2017 10:02
Star
You must be signed in to star a gist
Use Magit and Emacs with git-duet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'dash) | |
(require 'magit) | |
(defvar magit-duet--default-commit-popup-actions nil | |
"Store the magit-commit-popup here for | |
de-initializing. magit-duet-commit") | |
(defun magit-duet-commit (&optional args) | |
"Create a new duet commit" | |
(interactive (if current-prefix-arg | |
(list (cons "--amend" (magit-commit-arguments))) | |
(list (magit-commit-arguments)))) | |
(when (setq args (magit-commit-assert args)) | |
(magit-run-git-with-editor "duet-commit" args))) | |
(defun magit-duet-commit-init () | |
"Add duet-commit to magit commit popup.." | |
(interactive) | |
(when (eq magit-duet--default-commit-popup-actions nil) | |
(setq magit-duet--default-commit-popup-actions | |
(plist-get magit-commit-popup :actions)) | |
(plist-put | |
magit-commit-popup | |
:actions | |
(-remove-at 5 (-insert-at 4 | |
'(100 "Duet commit" magit-duet-commit) | |
(plist-get magit-commit-popup :actions)))))) | |
(add-hook 'magit-mode-hook 'magit-duet-commit-init) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment