aboutsummaryrefslogtreecommitdiff
path: root/input_field.h
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-10-12 00:11:33 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-10-12 00:11:33 -0400
commitd58f2e870b8f998262609b98f91d290b65ab80d3 (patch)
treeacb51286dc7855396e64c228f0fd0a968d41e851 /input_field.h
parent60585faf7951cffb6046280bdd5f91275fb97d65 (diff)
improved key repeat
Diffstat (limited to 'input_field.h')
-rw-r--r--input_field.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/input_field.h b/input_field.h
index 64cb557..f3379d4 100644
--- a/input_field.h
+++ b/input_field.h
@@ -3,7 +3,8 @@
#include "state.h"
-void type_key(client_state* state, xkb_keysym_t keysym);
+// returns true if the key should repeat
+bool type_key(client_state* state, xkb_keysym_t keysym);
void submit_line(client_state* state);
#endif