mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-10 04:27:45 -05:00
search highlights
This commit is contained in:
parent
67120e9940
commit
43dd569afc
6 changed files with 198 additions and 160 deletions
6
vimode.h
6
vimode.h
|
|
@ -25,9 +25,13 @@ void vimode_input(struct seat *seat, struct terminal *term,
|
|||
struct search_match_iterator {
|
||||
struct terminal *term;
|
||||
struct coord start;
|
||||
char32_t const *buf;
|
||||
size_t len;
|
||||
};
|
||||
|
||||
struct search_match_iterator search_matches_new_iter(struct terminal *term);
|
||||
struct search_match_iterator search_matches_new_iter(struct terminal *term,
|
||||
char32_t const *const buf,
|
||||
size_t const len);
|
||||
struct range search_matches_next(struct search_match_iterator *iter);
|
||||
|
||||
void vimode_view_down(struct terminal *term, int delta);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue