tags:

views:

296

answers:

3

How do I remove the Tool bar(which has the open save buttons) in the GVim?

+15  A: 
:set guioptions-=T

See also:

:help 'guioptions'
a paid nerd
+1 for 2000: congrats!
Ewan Todd
+1  A: 

I have my .vimrc set as follows

set guioptions=aegimrLt

where each of the option value can be found by issuing

:help guioptions
Jeffrey04
+1  A: 

Another one:

:set toolbar=
:help 'toolbar'
ngn