aboutsummaryrefslogtreecommitdiff
path: root/sx-question-mode.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2014-12-09 13:15:33 -0500
committerSean Allred <code@seanallred.com>2014-12-09 13:15:33 -0500
commit8e73f901f46cbba4cb8650481464503844ebe81e (patch)
tree8fe40208621e6068029e7d31dfc261f95c97b0e8 /sx-question-mode.el
parent804e18ee0246709475aa6a500191f143a193b5b8 (diff)
parentb21052b4bd537f1e61fe8efb3badee1043a0af54 (diff)
Merge pull request #143 from vermiculus/hotfix-up-down-keys
Hotfix up down keys
Diffstat (limited to 'sx-question-mode.el')
-rw-r--r--sx-question-mode.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/sx-question-mode.el b/sx-question-mode.el
index ccd9433..19d7d16 100644
--- a/sx-question-mode.el
+++ b/sx-question-mode.el
@@ -193,7 +193,10 @@ Letters do not insert themselves; instead, they are commands.
(mapc
(lambda (x) (define-key sx-question-mode-map
(car x) (cadr x)))
- `(("n" sx-question-mode-next-section)
+ `(
+ ([down] sx-question-mode-next-section)
+ ([up] sx-question-mode-previous-section)
+ ("n" sx-question-mode-next-section)
("p" sx-question-mode-previous-section)
("g" sx-question-mode-refresh)
("c" sx-comment)