daa84 / neovim-gtk

gtk ui for neovim
GNU General Public License v3.0
716 stars 57 forks source link

Feature Request: Respect guioptions-=e #233

Open dead10ck opened 4 years ago

dead10ck commented 4 years ago

Hello, currently the GUI tabs that show up will eventually start sliding tabs off the page, making it so that you can no longer see all the tabs you have open at a glance. In GVim, I do set guioptions-=e to just use a non-GUI tab window to get around this issue.

However, it appears that neovim-gtk does not respect this option. It would be nice if it did so I could use non-GUI tab windows.

Thanks for all your work!

edubxb commented 4 years ago

You can do what you want this way:

call rpcnotify(1, 'Gui', 'Option', 'Tabline', 0)

+info in the wiki.

dead10ck commented 4 years ago

Ah, I missed that, thank you! I can definitely use that to work around it for the present. Although it would be nice to be able to use the same vimrc and have it work regardless of which GUI frontend I happen to be using, rather than special casing these things.