mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-05-03 06:46:42 -04:00
feat: ansi for pipe rows
This commit is contained in:
parent
5587604469
commit
312b22300d
10 changed files with 566 additions and 23 deletions
4
search.c
4
search.c
|
|
@ -874,7 +874,7 @@ search_extend_left(struct terminal *term, const struct coord *target)
|
|||
|
||||
const bool move_cursor = term->search.cursor != 0;
|
||||
|
||||
struct extraction_context *ctx = extract_begin(SELECTION_NONE, false);
|
||||
struct extraction_context *ctx = extract_begin(SELECTION_NONE, false, false);
|
||||
if (ctx == NULL)
|
||||
return;
|
||||
|
||||
|
|
@ -938,7 +938,7 @@ search_extend_right(struct terminal *term, const struct coord *target)
|
|||
|
||||
const bool move_cursor = term->search.cursor == term->search.len;
|
||||
|
||||
struct extraction_context *ctx = extract_begin(SELECTION_NONE, false);
|
||||
struct extraction_context *ctx = extract_begin(SELECTION_NONE, false, false);
|
||||
if (ctx == NULL)
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue