How to make the Vim GUI tab menu look like the Console tab menu

When in vim in the console (terminal) with a table several files are opened, we get a tabbed interface for each file. My question is, can we get the same look and feel for gvim (GUI), and not have a real GUI interface for each file.

+5
source share
1 answer
:set guioptions-=e

on the command line or

set guioptions-=e

c ~/.vimrc.

See more details :help guioptions.

+11
source

All Articles