diff options
author | Kyle Meyer <kyle@kyleam.com> | 2019-06-27 19:55:10 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2019-06-27 20:06:12 -0400 |
commit | fbcb918e6566434f1fb450b2892d006bf591fba0 (patch) | |
tree | 7211c0d5ade4be283e2740c520c9ce33ff075ff0 | |
parent | b6bf22734efeedd84669df46fde128fdff66657f (diff) | |
download | emacs.d-fbcb918e6566434f1fb450b2892d006bf591fba0.tar.gz |
Use magit-wip-mode rather than after-save variant
My main motivation for this is that the log transient conditions on
the value of magit-wip-mode. I never had a strong reason to not use
magit-wip-mode; it's just a bit more than I need.
-rw-r--r-- | init.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1047,7 +1047,7 @@ (setq git-rebase-show-instructions nil)) (use-package magit-wip - :diminish magit-wip-after-save-local-mode + :diminish magit-wip-mode :init (bind-keys :map km/magit-wip-map ("c" . magit-wip-commit) @@ -1059,7 +1059,7 @@ (setq magit-wip-merge-branch t) :config - (magit-wip-after-save-mode 1)) + (magit-wip-mode 1)) (use-package magit-extras :config |