diff --git a/layers/+source-control/git/packages.el b/layers/+source-control/git/packages.el index 67d1eec961c0..c978a3878e83 100644 --- a/layers/+source-control/git/packages.el +++ b/layers/+source-control/git/packages.el @@ -112,7 +112,9 @@ (spacemacs|define-micro-state git-blame :doc (concat "Press [b] again to blame further in the history, " "[q] to go up or quit.") - :on-enter (let (golden-ratio-mode) (call-interactively 'magit-blame)) + :on-enter (let (golden-ratio-mode) + (unless (bound-and-true-p magit-blame-mode) + (call-interactively 'magit-blame))) :persistent t :bindings ("b" magit-blame)