diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-14 13:39:46 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-14 13:39:46 +0000 |
commit | bc2c6b72e62cbcc1540ce4154760250273e05d04 (patch) | |
tree | 7eecb312623219f8b5983eea97f181746dee29e3 | |
parent | a33de03f6c9f0419d7640bce0ab203fd43607bb4 (diff) |
Fix up and down keys
-rw-r--r-- | sx-question-list.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-question-list.el b/sx-question-list.el index 0dfebc4..69fb435 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -300,8 +300,8 @@ into consideration. (car x) (cadr x))) '( ;; S-down and S-up would collide with `windmove'. - ([down] sx-question-list-view-next) - ([up] sx-question-list-view-previous) + ([down] sx-question-list-next) + ([up] sx-question-list-previous) ("n" sx-question-list-next) ("p" sx-question-list-previous) ("j" sx-question-list-view-next) |