diff options
author | mathew <glephunter@gmail.com> | 2023-08-15 18:47:14 +0800 |
---|---|---|
committer | glepnir <glephunter@gmail.com> | 2023-12-16 18:59:59 +0800 |
commit | e38027ef69f75653ee953b16ebf4a8652a3fb748 (patch) | |
tree | d27158d56da5810b942a3d561ae15b2711b2a7cd /src/nvim/buffer_defs.h | |
parent | 7e7da962de404e3a0952bcc0adc6fbe53eda3cfb (diff) | |
download | rneovim-e38027ef69f75653ee953b16ebf4a8652a3fb748.tar.gz rneovim-e38027ef69f75653ee953b16ebf4a8652a3fb748.tar.bz2 rneovim-e38027ef69f75653ee953b16ebf4a8652a3fb748.zip |
feat(ui): completeopt support popup like vim
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index beb3ec95b8..dc93243fad 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1286,7 +1286,8 @@ struct window_S { 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 + bool w_floating; ///< whether the window is floating + bool w_float_is_info; // the floating window is info float FloatConfig w_float_config; // w_fraction is the fractional row of the cursor within the window, from |