diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-10-26 18:03:09 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-10-26 18:11:50 -0400 |
commit | c93b7f1908815d1e6741871c8b9979d0fbadae29 (patch) | |
tree | f3c9ac02b3b8f13d58ac15338df77868d2efcc4c | |
parent | a6abb82872b63962af77e990a189472e577b5732 (diff) | |
download | emacs.d-c93b7f1908815d1e6741871c8b9979d0fbadae29.tar.gz |
Don't use a custom value for magit-uniquify-buffer-names
As of Magit's 7edecce4 (Append an asterisk to buffer names when
possible, 2017-10-09), the default value gives the same result when
magit-uniquify-buffer-names is nil.
-rw-r--r-- | init.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -946,8 +946,8 @@ (lambda (x) (string-prefix-p "-n" x)) magit-log-arguments))) - (setq magit-uniquify-buffer-names nil - magit-buffer-name-format "*%M%v: %t*") + (setq magit-uniquify-buffer-names nil) + (setq magit-no-confirm '(stage-all-changes unstage-all-changes reverse)) (add-to-list 'magit-blame-disable-modes 'lispy-mode) |