term: struct row: reorder, for improved readability

This commit is contained in:
Daniel Eklöf 2024-09-09 07:41:59 +02:00
parent f3f9212c7c
commit 2f68448bd8
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -158,15 +158,14 @@ struct row {
struct cell *cells; struct cell *cells;
struct row_data *extra; struct row_data *extra;
bool dirty;
bool linebreak;
struct { struct {
int16_t cmd_start; /* Column, -1 if unset */ int16_t cmd_start; /* Column, -1 if unset */
int16_t cmd_end; /* Column, -1 if unset */ int16_t cmd_end; /* Column, -1 if unset */
bool prompt_marker; bool prompt_marker;
} __attribute__((packed)) shell_integration; } __attribute__((packed)) shell_integration;
bool dirty;
bool linebreak;
}; };
struct sixel { struct sixel {