diff options
Diffstat (limited to 'keychord.lua')
-rw-r--r-- | keychord.lua | 1 |
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-' |