Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

vim

vi

When more than one file is opened in vim in console(terminal) with tabnew we will get a tabbed interface for each file. My question is can we get the same look and feel for gvim(GUI) rather than having real GUI tabbed interface for each file.

like image 984
Vineel Kumar Reddy Avatar asked Jun 26 '12 20:06

Vineel Kumar Reddy


1 Answers

:set guioptions-=e

in the command-line or

set guioptions-=e

in your ~/.vimrc.

See :help guioptions for more options.

like image 132
romainl Avatar answered Oct 21 '22 02:10

romainl