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 21:04:27 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-25 21:04:27 -0700
commitdd635546e3b43f7e50de88ccdc8464558f0a028a (patch)
treeef3a56faa8df887290d1979f2e7a5e86c5351871 /keychord.lua
parentbce43b56b0e26cbee9b7c544071b1e23d3f69df6 (diff)
downloadtext.love-dd635546e3b43f7e50de88ccdc8464558f0a028a.tar.gz
.
Diffstat (limited to 'keychord.lua')
-rw-r--r--keychord.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/keychord.lua b/keychord.lua
index 1e319dd..12feef7 100644
--- a/keychord.lua
+++ b/keychord.lua
@@ -13,7 +13,6 @@ 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-'