diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-12-23 15:06:28 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-12-31 16:24:07 +0100 |
commit | dc4430933648c908bdabcd4ed6c782efffbec4f2 (patch) | |
tree | ef7bec8ffcc797d5e661d9dcb437b876a1575fbc /src/nvim/grid_defs.h | |
parent | 1cec5542a83baf04848e37475b9b0b7f50e47284 (diff) | |
download | rneovim-dc4430933648c908bdabcd4ed6c782efffbec4f2.tar.gz rneovim-dc4430933648c908bdabcd4ed6c782efffbec4f2.tar.bz2 rneovim-dc4430933648c908bdabcd4ed6c782efffbec4f2.zip |
multigrid: rename to grid.row_offset and grid.requested_rows
Diffstat (limited to 'src/nvim/grid_defs.h')
-rw-r--r-- | src/nvim/grid_defs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/grid_defs.h b/src/nvim/grid_defs.h index 964a71de62..006a07bfb4 100644 --- a/src/nvim/grid_defs.h +++ b/src/nvim/grid_defs.h @@ -41,17 +41,17 @@ typedef struct { unsigned *LineOffset; char_u *LineWraps; - // the size of the allocated grid + // the size of the allocated grid. int Rows; int Columns; // offsets for the grid relative to the global screen - int OffsetRow; - int OffsetColumn; + int row_offset; + int col_offset; - // the size expected to be allocated to the internal grid - int internal_rows; - int internal_columns; + // grid size requested by the UI. Used for window grids only. + int requested_rows; + int requested_cols; int was_resized; } ScreenGrid; |