about summary refs log tree commit diff stats
path: root/app.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-07-12 22:13:06 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-07-12 22:13:06 -0700
commit75ec5c9087d82f07b1e3e604338fbeef9e17cdf9 (patch)
tree75bdc85b81ae746dc27d8a00cc3d93e6115c2095 /app.lua
parent9e9e8ed35cfbbcbc4ad43903079d574c6358e932 (diff)
downloadtext.love-75ec5c9087d82f07b1e3e604338fbeef9e17cdf9.tar.gz
.
Diffstat (limited to 'app.lua')
-rw-r--r--app.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/app.lua b/app.lua
index 56b9dba..2655ea0 100644
--- a/app.lua
+++ b/app.lua
@@ -237,6 +237,7 @@ function App.mouse_y()
 end
 
 -- all textinput events are also keypresses
+-- TODO: handle chords of multiple keys
 function App.run_after_textinput(t)
   App.keypressed(t)
   App.textinput(t)
@@ -246,6 +247,7 @@ function App.run_after_textinput(t)
 end
 
 -- not all keys are textinput
+-- TODO: handle chords of multiple keys
 function App.run_after_keychord(chord)
   App.keychord_pressed(chord)
   App.keyreleased(chord)