diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-02-22 15:03:46 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-03-22 15:42:26 +0100 |
commit | 08ca5207cd284c8e5a1f1a47b98356415f4c1cf7 (patch) | |
tree | 0b668e509068b4a758a25265299b472dde64d517 /src/nvim/buffer_defs.h | |
parent | 070e084a64dd08ff28c826843f0d61ca51837841 (diff) | |
download | rneovim-08ca5207cd284c8e5a1f1a47b98356415f4c1cf7.tar.gz rneovim-08ca5207cd284c8e5a1f1a47b98356415f4c1cf7.tar.bz2 rneovim-08ca5207cd284c8e5a1f1a47b98356415f4c1cf7.zip |
w_grid_alloc: baseline impl
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index a05bd6fcc7..ae7b9739a6 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1409,6 +1409,7 @@ struct window_S { int w_tagstacklen; // number of tags on stack ScreenGrid w_grid; // the grid specific to the window + ScreenGrid w_grid_alloc; // the grid specific to the window bool w_pos_changed; // true if window position changed bool w_floating; ///< whether the window is floating FloatConfig w_float_config; |