From 8fa2a3fcb67b91346f72c57e40951ee7e335aca2 Mon Sep 17 00:00:00 2001 From: Bjorn Winckler Date: Sun, 19 Aug 2012 17:45:15 +0200 Subject: [PATCH] Disable toolbar by default The toolbar is an anachronism and there are no 2x icons so it looks horrendous on a Retina display. Users can always re-enable it by adding "set go+=T" to their ~/.gvimrc. --- src/option.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/option.c b/src/option.c index b8aa17809f..0cb3629503 100644 --- a/src/option.c +++ b/src/option.c @@ -1347,6 +1347,8 @@ static struct vimoption (char_u *)&p_go, PV_NONE, # if defined(UNIX) && !defined(MACOS) {(char_u *)"aegimrLtT", (char_u *)0L} +# elif defined(FEAT_GUI_MACVIM) + {(char_u *)"egmrL", (char_u *)0L} # else {(char_u *)"egmrLtT", (char_u *)0L} # endif