aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2022-12-02 11:35:30 -0500
committeradnano <me@adnano.co>2022-12-02 11:35:30 -0500
commit38b4bae4bd4b2f96c3ddfa69880dc50c0affb8d9 (patch)
treec178e30acfe084b58a0653391ee773679a2629d0
parent972277a5e0a4d92810c84afe3a6b278b3f8bbd54 (diff)
downloadwmenu-38b4bae4bd4b2f96c3ddfa69880dc50c0affb8d9.tar.gz
Fix move to end of word
-rw-r--r--main.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/main.c b/main.c
index f1c6350..fb49c03 100644
--- a/main.c
+++ b/main.c
@@ -501,6 +501,8 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
XKB_MOD_NAME_SHIFT,
XKB_STATE_MODS_DEPRESSED | XKB_STATE_MODS_LATCHED);
+ size_t len = strlen(state->text);
+
if (ctrl) {
// Emacs-style line editing bindings
switch (sym) {
@@ -580,11 +582,11 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
case XKB_KEY_Right:
case XKB_KEY_KP_Right:
// Move to end of word
- while (state->cursor > 0 && state->text[nextrune(state, -1)] == ' ') {
- state->cursor = nextrune(state, -1);
+ while (state->cursor < len && state->text[state->cursor] == ' ') {
+ state->cursor = nextrune(state, +1);
}
- while (state->cursor > 0 && state->text[nextrune(state, -1)] != ' ') {
- state->cursor = nextrune(state, -1);
+ while (state->cursor < len && state->text[state->cursor] != ' ') {
+ state->cursor = nextrune(state, +1);
}
render_frame(state);
return;
@@ -592,7 +594,6 @@ void keypress(struct menu_state *state, enum wl_keyboard_key_state key_state,
}
char buf[8];
- size_t len = strlen(state->text);
switch (sym) {
case XKB_KEY_Return:
case XKB_KEY_KP_Enter: