Skip to content

Commit

Permalink
Workaround magithub not updating to use transient like magit.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackson15j committed May 3, 2019
1 parent d5079cd commit b7db32a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .emacs
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,13 @@
;; ========================
;; https://www.gnu.org/software/emacs/manual/html_node/emacs/General-VC-Options.html
(setq vc-follow-symlinks t)
;; https://github.com/magit/magit/issues/3749
;; `magit` moved to using `transient` but some packages (`magithub` -
;; https://github.com/vermiculus/magithub/issues/402) haven't updated, hence
;; explicit definition of `magit-popup`
(use-package magit-popup
:ensure t
)
;; magit - a pretty good git package with more features than the built in emacs "vc" package.
;; http://magit.github.com/magit/
; (add-to-list 'load-path "~/elisp/magit/")
Expand All @@ -444,7 +451,8 @@
:after magit
:ensure t
:config
(magithub-feature-autoinject t)
;; see: https://github.com/vermiculus/magithub/issues/402
; (magithub-feature-autoinject t)
(add-hook 'magithub-issue-post-mode-hook 'flyspell-mode)
)

Expand Down

0 comments on commit b7db32a

Please sign in to comment.