all repos — nixfiles @ 7922a0dc6c19a41872540603e25a0dc3de4080f9

System and user configuration, managed by nix and home-manager

Emacs: Add git-chore command

Alan Pearce
commit

7922a0dc6c19a41872540603e25a0dc3de4080f9

parent

3ee4e29e788dbf5b7caff9c145ba82793d86a4f4

1 file changed, 5 insertions(+), 0 deletions(-)

jump to
M emacs/.emacs.d/main.elemacs/.emacs.d/main.el
@@ -537,6 +537,11 @@ (interactive "sfeature: ")
(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"))