diff options
Diffstat (limited to 'emacs/.emacs.d/main.el')
-rw-r--r-- | emacs/.emacs.d/main.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index cd858cf8..29315281 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -537,6 +537,11 @@ (projectile-with-default-dir (projectile-project-root) (call-process-shell-command (concat "git feature " feature)))) + (defun git-chore (chore) + (interactive "schore: ") + (projectile-with-default-dir (projectile-project-root) + (call-process-shell-command (concat "git chore " chore)))) + (defun open-pull-request () (interactive) (async-shell-command "git pull-request")) |