diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-12-05 23:38:30 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-12-05 23:38:30 -0500 |
commit | 886ef58878a3650a1c07ab418cbff1e2d2cb1c8f (patch) | |
tree | 9cb5e90960a9cb2d32c68ebb54142350c84cddaa /lisp | |
parent | 12e3e07c6843664bb3c750bc644fa05cd70816d0 (diff) | |
download | emacs.d-886ef58878a3650a1c07ab418cbff1e2d2cb1c8f.tar.gz |
magit-log-popup: Add wip log commands
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-git.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/init-git.el b/lisp/init-git.el index 6f15811..69dc888 100644 --- a/lisp/init-git.el +++ b/lisp/init-git.el @@ -639,6 +639,10 @@ show tags by default." (magit-define-popup-action 'magit-log-popup ?e "Edit options" 'magit-log-refresh-popup) +(magit-define-popup-action 'magit-log-popup + ?w "Log current WIP" 'magit-wip-log-current) +(magit-define-popup-action 'magit-log-popup + ?W "Log other WIP" 'magit-wip-log) (magit-define-popup-action 'magit-branch-popup ?c "Create & checkout from current" |