This commit is contained in:
Piotr Kocia 2025-03-31 23:31:44 +02:00
parent 41987537cf
commit 210325d8aa
2 changed files with 1269 additions and 1197 deletions

2458
vimode.c

File diff suppressed because it is too large Load diff

View file

@ -24,10 +24,10 @@ void vimode_search_add_chars(struct terminal *term, const char *text,
size_t len);
struct search_match_iterator {
struct terminal *term;
struct coord start;
char32_t const *buf;
size_t len;
struct terminal *term;
struct coord start;
char32_t const *buf;
size_t len;
};
struct search_match_iterator search_matches_new_iter(struct terminal *term,