diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-05-09 23:31:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 23:31:30 +0200 |
commit | d818135e3f45fc72ceba19c0ffc035ed77d120af (patch) | |
tree | 83fc23b9a1f8489baa073559e48dab23fcc59dae /src/nvim/ui.h | |
parent | b6ad20602498e260b3c7ede79699d986e96903da (diff) | |
parent | b9ad12e6c2fa557e2c2c2f2f6c40fabc0cc89efd (diff) | |
download | rneovim-d818135e3f45fc72ceba19c0ffc035ed77d120af.tar.gz rneovim-d818135e3f45fc72ceba19c0ffc035ed77d120af.tar.bz2 rneovim-d818135e3f45fc72ceba19c0ffc035ed77d120af.zip |
Merge #9992 from justinmk/ui-upgrade
UI/nvim_ui_attach(): add "override" option
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r-- | src/nvim/ui.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h index 3f6b3babad..e1dd18a289 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -48,9 +48,11 @@ typedef int LineFlags; struct ui_t { bool rgb; + bool override; ///< Force highest-requested UI capabilities. bool composed; - bool ui_ext[kUIExtCount]; ///< Externalized widgets - int width, height; + bool ui_ext[kUIExtCount]; ///< Externalized UI capabilities. + int width; + int height; void *data; #ifdef INCLUDE_GENERATED_DECLARATIONS |