about summary refs log tree commit diff stats
path: root/keychord.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-05-25 15:47:11 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-25 15:47:11 -0700
commitd1f893a98e80b3baf25aa9d30f8305c586569e66 (patch)
tree5e500df3120c2ee2a824b31f3be6d7705eec07f5 /keychord.lua
parent9892bc5d7c924ce284003a35c00914352713eb42 (diff)
downloadlines.love-d1f893a98e80b3baf25aa9d30f8305c586569e66.tar.gz
M-left/M-right for word-based motions
Diffstat (limited to 'keychord.lua')
-rw-r--r--keychord.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/keychord.lua b/keychord.lua
index 12feef7..1e319dd 100644
--- a/keychord.lua
+++ b/keychord.lua
@@ -13,6 +13,7 @@ function App.combine_modifiers(key)
   local down = love.keyboard.isDown
   if down('lctrl') or down('rctrl') then
     result = result..'C-'
+    print(result)
   end
   if down('lalt') or down('ralt') then
     result = result..'M-'