diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-08-11 23:38:46 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2018-08-17 23:23:49 -0400 |
commit | c92952fdcd94590b0a603dd358908cb7d276c991 (patch) | |
tree | e13073718ca58405f3c145aa95ced3e0e261bfe4 /lisp | |
parent | 9b7ed6d62bd7269420e2acab8585bf73896df5a2 (diff) | |
download | emacs.d-c92952fdcd94590b0a603dd358908cb7d276c991.tar.gz |
magit: Add custom magit-log-current variant
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-magit.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/km-magit.el b/lisp/km-magit.el index 19cae74..83b6b08 100644 --- a/lisp/km-magit.el +++ b/lisp/km-magit.el @@ -627,6 +627,12 @@ argument. Interactively, this can be accessed using the command 'git-commit-flyspell-verify) (turn-on-flyspell)) +(defun km/magit-log-current (&optional args files) + "Like `magit-log-current', but if head is detached, use \"HEAD\"." + (interactive (magit-log-arguments)) + (magit-log (list (or (magit-get-current-branch) "HEAD")) + args files)) + (defun km/magit-log-dwim (&optional args files) (interactive (magit-log-arguments)) (let ((range |