From 486e8631ce9269d34c00c07038e04013640f8825 Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Sun, 12 May 2024 12:35:48 -0600 Subject: replace UiTerm with Ui & delete function pointers --- view.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'view.h') diff --git a/view.h b/view.h index a9ebbc5..79275c8 100644 --- a/view.h +++ b/view.h @@ -26,18 +26,6 @@ typedef struct { Mark cursor; } SelectionRegion; -typedef struct { - char data[16]; /* utf8 encoded character displayed in this cell (might be more than - one Unicode codepoint. might also not be the same as in the - underlying text, for example tabs get expanded */ - size_t len; /* number of bytes the character displayed in this cell uses, for - characters which use more than 1 column to display, their length - is stored in the leftmost cell whereas all following cells - occupied by the same character have a length of 0. */ - int width; /* display width i.e. number of columns occupied by this character */ - CellStyle style; /* colors and attributes used to display this cell */ -} Cell; - typedef struct Line Line; struct Line { /* a line on the screen, *not* in the file */ Line *prev, *next; /* pointer to neighbouring screen lines */ -- cgit v1.2.3