search: match_to_end_of_word(): we always extend the selection with at least one character

This commit is contained in:
Daniel Eklöf 2021-03-28 21:15:39 +02:00
parent 7cf0e2aae4
commit 11f7a6616b
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -456,13 +456,11 @@ search_match_to_end_of_word(struct terminal *term, bool spaces_only)
xassert(term->grid->rows[new_end.row] != NULL);
/* Find next word boundary */
new_end.row -= term->grid->view;
selection_find_word_boundary_right(term, &new_end, spaces_only);
new_end.row += term->grid->view;
if (new_end.row == old_end.row && new_end.col == old_end.col)
return;
struct coord pos = old_end;
const struct row *row = term->grid->rows[pos.row];