Skip to content

Commit

Permalink
Revert "scroll transient state: invert up and down"
Browse files Browse the repository at this point in the history
This reverts commit c9f7fc0.

Motivation: prefer to match the behavior of `[`, `]`, `{`, `}` etc...
instead of `j` and `k`.
  • Loading branch information
syl20bnr committed May 17, 2016
1 parent 3aa77e4 commit 463e477
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions layers/+distribution/spacemacs-bootstrap/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -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 ()
Expand Down

0 comments on commit 463e477

Please sign in to comment.