feat(search): add delete-to-start and delete-to-end keybindings

with ctrl+u and ctrl+k respectively

Ref: #1972
This commit is contained in:
Adrian fxj9a 2025-03-03 14:27:30 +01:00
parent 882f4b2468
commit 41c3d1834c
No known key found for this signature in database
GPG key ID: FA1E6994A87D434E
4 changed files with 35 additions and 0 deletions

View file

@ -1265,6 +1265,33 @@ execute_binding(struct seat *seat, struct terminal *term,
return true;
}
case BIND_ACTION_SEARCH_DELETE_TO_START: {
if (term->search.cursor > 0) {
memmove(&term->search.buf[0],
&term->search.buf[term->search.cursor],
(term->search.len - term->search.cursor)
* sizeof(char32_t));
term->search.len -= term->search.cursor;
term->search.cursor = 0;
*update_search_result = *redraw = true;
}
return true;
}
case BIND_ACTION_SEARCH_DELETE_TO_END: {
if (term->search.cursor < term->search.len) {
memmove(&term->search.buf[term->search.cursor],
&term->search.buf[term->search.len],
(term->search.len + term->search.cursor - term->search.len)
* sizeof(char32_t));
term->search.len = term->search.cursor;
*update_search_result = *redraw = true;
}
return true;
}
case BIND_ACTION_SEARCH_EXTEND_CHAR: {
struct coord target;
if (search_extend_find_char_right(term, &target)) {