Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

in gvim, how to disable scrollbar when taglist is shown?

Tags:

vim

taglist

i've set "set guioptions-=l", but whenever taglist is enabled the left hand scrollbar is still shown and cannot be disabled (right hand scrollbar toggles fine). also, vim wont maximize on start if taglist is enabled.

if the above can't be fixed, are there any taglist altenatives.

like image 406
devskii Avatar asked Oct 21 '10 03:10

devskii


People also ask

How do I stop vertical scrolling in CSS?

To hide the vertical scrollbar and prevent vertical scrolling, use overflow-y: hidden like so: HTML. CSS.

How do I hide the scroll bar in Chrome?

2. Type "Remove Scrollbars" (without quotes) in the search box and press "Enter." Click the "Remove Scrollbars" option located on top of the search results.


2 Answers

Make sure you have guioptions-=L set too. If it's not removed then you'll get a left hand scrollbar whenever there's a vertical split.

like image 76
Alligator Avatar answered Nov 15 '22 08:11

Alligator


I use this in my .gvimrc.

set guioptions=Ace 
like image 28
Koffiekop Avatar answered Nov 15 '22 09:11

Koffiekop