From 2f68448bd890da925647e066585509f6a506fd49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 9 Sep 2024 07:41:59 +0200 Subject: [PATCH] term: struct row: reorder, for improved readability --- terminal.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/terminal.h b/terminal.h index 5a6381a1..3e85ac99 100644 --- a/terminal.h +++ b/terminal.h @@ -158,15 +158,14 @@ struct row { struct cell *cells; struct row_data *extra; + bool dirty; + bool linebreak; + struct { int16_t cmd_start; /* Column, -1 if unset */ int16_t cmd_end; /* Column, -1 if unset */ bool prompt_marker; } __attribute__((packed)) shell_integration; - - bool dirty; - bool linebreak; - }; struct sixel {