mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-03 07:15:29 -04:00
term: modify term_fill() to optionally reset the SGR attributes
This commit is contained in:
parent
189cfd717f
commit
b3a84ba71b
3 changed files with 10 additions and 4 deletions
|
|
@ -3511,17 +3511,22 @@ print_spacer(struct terminal *term, int col, int remaining)
|
|||
* - double width characters not supported
|
||||
*/
|
||||
void
|
||||
term_fill(struct terminal *term, int r, int c, char data, size_t count)
|
||||
term_fill(struct terminal *term, int r, int c, char data, size_t count,
|
||||
bool use_sgr_attrs)
|
||||
{
|
||||
struct row *row = grid_row(term->grid, r);
|
||||
row->dirty = true;
|
||||
|
||||
xassert(c + count <= term->cols);
|
||||
|
||||
const struct attributes attrs = use_sgr_attrs
|
||||
? term->vt.attrs
|
||||
: (struct attributes){0};
|
||||
|
||||
const struct cell *last = &row->cells[c + count];
|
||||
for (struct cell *cell = &row->cells[c]; cell < last; cell++) {
|
||||
cell->wc = data;
|
||||
cell->attrs = term->vt.attrs;
|
||||
cell->attrs = attrs;
|
||||
|
||||
if (unlikely(term->vt.osc8.uri != NULL)) {
|
||||
grid_row_uri_range_put(row, c, term->vt.osc8.uri, term->vt.osc8.id);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue