diff options
author | Sean Allred <code@seanallred.com> | 2018-02-09 16:11:02 -0600 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2018-02-09 16:14:16 -0600 |
commit | 95100fa3c933f6b00519baa3c7073b882a1b4603 (patch) | |
tree | 526029f3e71683e0efb5b75194cb6603436f62e6 | |
parent | f2bf0ba847c4e17efd4045397a94c9e225dca2cb (diff) |
File issue using Magithub if available
-rw-r--r-- | sx.el | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -48,7 +48,9 @@ (defun sx-bug-report () "File a bug report about the `sx' package." (interactive) - (browse-url "https://github.com/vermiculus/sx.el/issues/new")) + (if (featurep 'magithub) + (magithub-issue-new (magithub-repo "vermiculus/sx.el")) + (browse-url "https://github.com/vermiculus/sx.el/issues/new"))) ;;; Site |