Emacs: Add command to open pull requests
Alan Pearce alan@alanpearce.eu
Thu, 16 Nov 2017 12:54:36 +0100
1 files changed, 5 insertions(+), 0 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -567,6 +567,11 @@ (interactive "sfeature: ") (projectile-with-default-dir (projectile-project-root) (call-process-shell-command (concat "git feature " feature)))) + (defun open-pull-request () + (interactive) + (async-shell-command "hub pr")) + (defalias 'open-pr #'open-pull-request) + (setq projectile-switch-project-action #'projectile-commander projectile-completion-system 'ivy projectile-create-missing-test-files t)