branch: elpa/magit
commit 3516e03705048d4f40aced38b55a151ac7a6d8a1
Author: Xavier Young <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
magit-diff-mode-map: Also bind S-SPC to scroll-down
Generally, when we bind SPC to some "scroll down" command, we also
bind DEL *and* S-SPC to the respective "scroll up" command. Do the
same here.
---
lisp/magit-diff.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/lisp/magit-diff.el b/lisp/magit-diff.el
index a112bf5ca1b..e229a92a62f 100644
--- a/lisp/magit-diff.el
+++ b/lisp/magit-diff.el
@@ -2062,6 +2062,7 @@ section or a child thereof."
"C-c C-b" #'magit-go-backward
"C-c C-f" #'magit-go-forward
"SPC" #'scroll-up
+ "S-SPC" #'scroll-down
"DEL" #'scroll-down
"j" #'magit-jump-to-diffstat-or-diff
"<remap> <write-file>" #'magit-patch-save)