feat: ansi for pipe rows

This commit is contained in:
saeedark 2025-10-08 02:38:45 +03:30 committed by saeedark
parent 5587604469
commit 312b22300d
10 changed files with 566 additions and 23 deletions

View file

@ -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;