diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-12-06 22:07:46 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-12-06 22:07:46 -0500 |
commit | 3b596fdbef91a3ea43a1096ecb23935f47428345 (patch) | |
tree | 605e05ae4b4bbf58f2e33e2a38c491843da0e61a | |
parent | 9383d7d979ab0f0cbf96a1522e3fb15d1ecc8b56 (diff) | |
download | emacs.d-3b596fdbef91a3ea43a1096ecb23935f47428345.tar.gz |
magit: Shorten number of commits in log
-rw-r--r-- | init.el | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -886,6 +886,11 @@ magit-revision-insert-related-refs nil magit-log-section-arguments nil) + (setq magit-log-arguments + (cons "-n75" (cl-remove-if + (lambda (x) (string-prefix-p "-n" x)) + magit-log-arguments))) + (dolist (margin (list magit-cherry-margin magit-log-margin magit-log-select-margin |