aboutsummaryrefslogtreecommitdiff
path: root/input_field.c
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-11-04 17:29:52 -0500
committerJack Jamison <jackqjamison@gmail.com>2025-11-06 19:45:03 -0500
commit95fb3cad63941466e913775a3c080b310d45d13a (patch)
tree555cbaf4d5fd7454efbe6ab200e268c04b53ed49 /input_field.c
parent38d43004656a2d00960484e5e5a5ece46bde840b (diff)
refactor onfig file and delete word backward
Diffstat (limited to 'input_field.c')
-rw-r--r--input_field.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/input_field.c b/input_field.c
index bd8b93e..d24239c 100644
--- a/input_field.c
+++ b/input_field.c
@@ -122,6 +122,7 @@ key_repeat_t type_key(client_state* state, xkb_keysym_t keysym) {
else if (alt) {
switch (keysym) {
case XKB_KEY_d: return delete_word(state);
+ case XKB_KEY_BackSpace: return delete_word_backward(state);
}
}
switch (keysym) {