aboutsummaryrefslogtreecommitdiff
path: root/input_field.h
diff options
context:
space:
mode:
authorRiley Beckett <rbeckettvt@gmail.com>2025-10-26 19:55:26 -0400
committerRiley Beckett <rbeckettvt@gmail.com>2025-10-26 19:55:26 -0400
commit500cd948a40a9ad2ee8e123254d66259c46464d6 (patch)
tree8a0d1a8364fbf11d02e7df40ceb4b8081644e903 /input_field.h
parent8003084ccf17b26e932b565cfc0bb30302af3dd7 (diff)
refactor keybinds
Diffstat (limited to 'input_field.h')
-rw-r--r--input_field.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/input_field.h b/input_field.h
index ab583e5..6ec588e 100644
--- a/input_field.h
+++ b/input_field.h
@@ -2,10 +2,11 @@
#define INPUT_FIELD_H_
#include "state.h"
+#include "keybind.h"
// returns true if the key should repeat
-bool type_key(client_state* state, xkb_keysym_t keysym);
+key_repeat_t type_key(client_state* state, xkb_keysym_t keysym);
void filter_items(client_state* state);
-void submit_line(client_state* state);
+void update_text_buffer(client_state* state);
#endif