Emacs: Add commands for git helpers
Alan Pearce alan@alanpearce.eu
Thu, 16 Nov 2017 11:14:15 +0100
1 files changed, 10 insertions(+), 0 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -557,6 +557,16 @@ (ghq--find-projects)))) (projectile-switch-project-by-name (expand-file-name project-dir (ghq--find-root)) arg))) + (defun git-bug (bug) + (interactive "sbug: ") + (projectile-with-default-dir (projectile-project-root) + (call-process-shell-command (concat "git bug " bug)))) + + (defun git-feature (feature) + (interactive "sfeature: ") + (projectile-with-default-dir (projectile-project-root) + (call-process-shell-command (concat "git feature " feature)))) + (setq projectile-switch-project-action #'projectile-commander projectile-completion-system 'ivy projectile-create-missing-test-files t)