diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-21 10:52:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-21 10:52:16 -0500 |
commit | e192a4600af6db8c54f22c854cbabf0b071ca4bc (patch) | |
tree | 2ad06e26f9fc5665ed61fca5b3ca5cea1e465f73 /src/nvim/buffer_defs.h | |
parent | 3c2402e5c2641be27e8a526d78c2e0e544ec9cf8 (diff) | |
parent | 2a5307202b02d47e26c4430a47db7a4cad422862 (diff) | |
download | rneovim-e192a4600af6db8c54f22c854cbabf0b071ca4bc.tar.gz rneovim-e192a4600af6db8c54f22c854cbabf0b071ca4bc.tar.bz2 rneovim-e192a4600af6db8c54f22c854cbabf0b071ca4bc.zip |
Merge pull request #13307 from janlazo/vim-8.1.0777
vim-patch:8.1.{323,777,933,938},8.2.{178,248,547,581,592,646,658,793,1608,1975,1991,1992,1993,1994,1998,1999,2003,2007,2008,2009}
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 93fe37b585..dba02a67e8 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1132,12 +1132,6 @@ struct VimMenu { vimmenu_T *next; ///< Next item in menu }; -typedef struct { - int wb_startcol; - int wb_endcol; - vimmenu_T *wb_menu; -} winbar_item_T; - /// Structure which contains all information that belongs to a window. /// /// All row numbers are relative to the start of the window, except w_winrow. @@ -1354,10 +1348,6 @@ struct window_S { char_u *w_localdir; /* absolute path of local directory or NULL */ - vimmenu_T *w_winbar; // The root of the WinBar menu hierarchy. - winbar_item_T *w_winbar_items; // list of items in the WinBar - int w_winbar_height; // 1 if there is a window toolbar - // Options local to a window. // They are local because they influence the layout of the window or // depend on the window layout. |