Can I set the horizontal scroll offset in Vim?

4

0

I would like to always see a little bit of context when the lines are to long, like:

set scrolloff=5

Is possible?

Tae

Posted 2011-06-06T22:41:03.100

Reputation: 183

Answers

7

See ":help 'sidescrolloff'". It works the same as 'scrolloff', only vertically, so you can do:

set sidescrolloff=5

Heptite

Posted 2011-06-06T22:41:03.100

Reputation: 16 267