diff options
author | Alan Pearce | 2018-08-16 09:47:43 +0200 |
---|---|---|
committer | Alan Pearce | 2018-08-16 09:47:43 +0200 |
commit | cfbc254bb7fb094b7cd9401231898bc35c197bca (patch) | |
tree | 9c598817673dde01dfa352942196560c96960a62 /emacs/.emacs.d | |
parent | 10758e81823dc59bf29b8e3ec5a56c7eef4a7d40 (diff) | |
download | nixfiles-cfbc254bb7fb094b7cd9401231898bc35c197bca.tar.lz nixfiles-cfbc254bb7fb094b7cd9401231898bc35c197bca.tar.zst nixfiles-cfbc254bb7fb094b7cd9401231898bc35c197bca.zip |
emacs: fix pull-request command
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/main.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 1bb513c0..098f3240 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -544,7 +544,7 @@ (defun open-pull-request () (interactive) - (async-shell-command "git pull-request")) + (async-shell-command "hub pull-request")) (defalias 'open-pr #'open-pull-request) (setq projectile-switch-project-action #'projectile-commander |