about summary refs log tree commit diff stats
path: root/commands.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-09-06 18:39:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-09-06 18:39:46 -0700
commitc112b8fadf86f908c71a63b88dcdb0d374c4eb6f (patch)
treee5c2d3e14e8f1acdcd4e792e8e9033700a63f8c7 /commands.lua
parent73fefa7d0961d3831da6c8b2eb7b1b05e3614a69 (diff)
downloadlines.love-c112b8fadf86f908c71a63b88dcdb0d374c4eb6f.tar.gz
switch shortcuts for bifold text
I've been running out of ctrl+ shortcuts, and I just remembered my
original idea to keep ctrl+ for drawings/mouse operations and alt+ for
everything else.
Diffstat (limited to 'commands.lua')
-rw-r--r--commands.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands.lua b/commands.lua
index 730fffc..be9c9bf 100644
--- a/commands.lua
+++ b/commands.lua
@@ -24,11 +24,11 @@ function source.draw_menu_bar()
       add_hotkey_to_menu('ctrl+l: show log browser')
     end
     if Editor_state.expanded then
-      add_hotkey_to_menu('ctrl+b: collapse debug prints')
+      add_hotkey_to_menu('alt+b: collapse debug prints')
     else
-      add_hotkey_to_menu('ctrl+b: expand debug prints')
+      add_hotkey_to_menu('alt+b: expand debug prints')
     end
-    add_hotkey_to_menu('ctrl+i: create/edit debug print')
+    add_hotkey_to_menu('alt+d: create/edit debug print')
     add_hotkey_to_menu('ctrl+f: find in file')
     add_hotkey_to_menu('alt+left alt+right: prev/next word')
   elseif Focus == 'log_browser' then