Revert "scroll transient state: invert up and down"

This reverts commit c9f7fc097e.

Motivation: prefer to match the behavior of `[`, `]`, `{`, `}` etc...
instead of `j` and `k`.
This commit is contained in:
syl20bnr 2016-05-17 11:00:50 -04:00
parent 3aa77e45d2
commit 463e477fd1
1 changed files with 8 additions and 8 deletions

View File

@ -131,16 +131,16 @@
(spacemacs|define-transient-state scroll
:title "Scrolling Transient State"
:bindings
("." evil-scroll-page-up "page up")
("," evil-scroll-page-down "page down")
("," evil-scroll-page-up "page up")
("." evil-scroll-page-down "page down")
;; half page
(">" evil-scroll-up "half page up")
("<" evil-scroll-down "half page down"))
("<" evil-scroll-up "half page up")
(">" evil-scroll-down "half page down"))
(spacemacs/set-leader-keys
"n." 'spacemacs/scroll-transient-state/evil-scroll-page-up
"n," 'spacemacs/scroll-transient-state/evil-scroll-page-down
"n>" 'spacemacs/scroll-transient-state/evil-scroll-up
"n<" 'spacemacs/scroll-transient-state/evil-scroll-down)
"n," 'spacemacs/scroll-transient-state/evil-scroll-page-up
"n." 'spacemacs/scroll-transient-state/evil-scroll-page-down
"n<" 'spacemacs/scroll-transient-state/evil-scroll-up
"n>" 'spacemacs/scroll-transient-state/evil-scroll-down)
;; pasting transient-state
(evil-define-command spacemacs//transient-state-0 ()