mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-22 05:33:45 -04:00
search: remember last searched-for string between searches
Regardless of how we exit search mode (commit or cancel), the search string is remembered. The next time we enter search mode, the last searched-for string will be used when searching for the next/prev match (ctrl+r, ctrl+s), and the search query is empty.
This commit is contained in:
parent
22266e384b
commit
739e7d76b4
3 changed files with 33 additions and 5 deletions
|
|
@ -514,6 +514,11 @@ struct terminal {
|
|||
bool view_followed_offset;
|
||||
struct coord match;
|
||||
size_t match_len;
|
||||
|
||||
struct {
|
||||
wchar_t *buf;
|
||||
size_t len;
|
||||
} last;
|
||||
} search;
|
||||
|
||||
struct wayland *wl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue