Reputation: 27221
Using macvim, which is awesome. However I would love to have some kind of horizontal scroll bar. Is this possible?
Upvotes: 2
Views: 1623
Reputation: 8313
You can get a horizontal scroll bar in GUI vims by doing :set go+=b
. See :h 'go'
for discussion. I've just tested this on my macvim, and it works fine (make sure you also :set nowrap
of course...)
Upvotes: 6