summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2017-10-26 18:08:22 -0400
committerKyle Meyer <kyle@kyleam.com>2017-10-26 18:11:50 -0400
commit41bc3b3e614487df4b5b5521b9b9c6d836a2d9ee (patch)
treea53ff20f9a3067c8537feae4e1fd909873c5654c
parentc93b7f1908815d1e6741871c8b9979d0fbadae29 (diff)
downloademacs.d-41bc3b3e614487df4b5b5521b9b9c6d836a2d9ee.tar.gz
magit-status-sections-hook: Update for new default
As of Magit's ebbf00b7 (Always show recent commits in the status buffer, 2017-10-26), magit-insert-unpushed-to-upstream has been replaced by magit-insert-unpushed-to-upstream-or-recent.
-rw-r--r--init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el
index b8a7007..92c1dfb 100644
--- a/init.el
+++ b/init.el
@@ -1135,7 +1135,7 @@
(setq magit-status-sections-hook
(append
- (let ((funcs (list #'magit-insert-unpushed-to-upstream
+ (let ((funcs (list #'magit-insert-unpushed-to-upstream-or-recent
#'magit-insert-unpushed-to-pushremote
#'magit-insert-unpulled-from-pushremote
#'magit-insert-unpulled-from-upstream)))