Merge branch 'search-treat-empty-cells-as-spaces'

This commit is contained in:
Daniel Eklöf 2021-03-28 14:22:34 +02:00
commit 6ae14614a5
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 4 additions and 0 deletions

View file

@ -30,6 +30,7 @@
* Update PGO build instructions in `INSTALL.md`
(https://codeberg.org/dnkl/foot/issues/418).
* In scrollback search mode, empty cells can now be matched by spaces.
### Deprecated

View file

@ -241,6 +241,9 @@ matches_cell(const struct terminal *term, const struct cell *cell, size_t search
base = composed->base;
}
if (composed == NULL && base == 0 && term->search.buf[search_ofs] == L' ')
return 1;
if (wcsncasecmp(&base, &term->search.buf[search_ofs], 1) != 0)
return -1;