From 500cd948a40a9ad2ee8e123254d66259c46464d6 Mon Sep 17 00:00:00 2001 From: Riley Beckett Date: Sun, 26 Oct 2025 19:55:26 -0400 Subject: refactor keybinds --- input_field.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'input_field.h') 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 -- cgit v1.2.3