aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ugrid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/ugrid.h')
-rw-r--r--src/nvim/ugrid.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/ugrid.h b/src/nvim/ugrid.h
index 04e027bd46..af78fe91c5 100644
--- a/src/nvim/ugrid.h
+++ b/src/nvim/ugrid.h
@@ -11,14 +11,12 @@ typedef struct ugrid UGrid;
struct ucell {
char data[CELLBYTES + 1];
- HlAttrs attrs;
+ sattr_T attr;
};
struct ugrid {
- int top, bot, left, right;
int row, col;
int width, height;
- HlAttrs attrs;
UCell **cells;
};