aboutsummaryrefslogtreecommitdiff
path: root/input_field.h
diff options
context:
space:
mode:
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