daa84 / neovim-gtk

gtk ui for neovim
GNU General Public License v3.0
717 stars 56 forks source link

Optionally disable header bars with NVIM_GTK_NO_HEADERBAR=1 #9

Closed fknorr closed 7 years ago

fknorr commented 7 years ago

Users with tiling window managers may prefer to hide window decorations to save vertical space. By overriding NVIM_GTK_NO_HEADERBAR=1, no client side decorations or tool bar icons are drawn.

header_bar is no longer part of ui::Components since it's not referenced outside of Ui::init.

The application menu is only created if requested by the desktop environment to avoid creation of an additional menu bar with nothing but the "About" item.

daa84 commented 7 years ago

Thanks