about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-05-29 01:31:54 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-05-29 01:31:54 -0700
commit6648aa4111c3985c82a60bad9c679185e7cf7463 (patch)
tree48bf068ba3c068431ca2052197c1f2558c2559af
parent63662f71091078eeb5fad7af1916c8caac1f29f1 (diff)
downloadmu-6648aa4111c3985c82a60bad9c679185e7cf7463.tar.gz
3892
Fix a keyboard shortcut conflict in commit 3884.
-rw-r--r--edit/003-shortcuts.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/edit/003-shortcuts.mu b/edit/003-shortcuts.mu
index f78e25af..5444b740 100644
--- a/edit/003-shortcuts.mu
+++ b/edit/003-shortcuts.mu
@@ -3492,12 +3492,12 @@ gxy
   ]
 ]
 
-# ctrl-e - scroll up by one line
+# ctrl-s - scroll up by one line
 # todo: scenarios
 
 after <handle-special-character> [
   {
-    scroll-up?:bool <- equal c, 5/ctrl-e
+    scroll-up?:bool <- equal c, 19/ctrl-s
     break-unless scroll-up?
     <move-cursor-begin>
     go-render?:bool, editor <- line-up editor, screen-height
@@ -3523,12 +3523,12 @@ def line-up editor:&:editor, screen-height:num -> go-render?:bool, editor:&:edit
   return movement?
 ]
 
-# ctrl-d - scroll down by one line
+# ctrl-x - scroll down by one line
 # todo: scenarios
 
 after <handle-special-character> [
   {
-    scroll-down?:bool <- equal c, 4/ctrl-d
+    scroll-down?:bool <- equal c, 24/ctrl-x
     break-unless scroll-down?
     <move-cursor-begin>
     go-render?:bool, editor <- line-down editor, screen-height