I know that with gvim, I can use the following command to set the width of a window:

set columns=80

How can I do the same, but instead of setting the width, increasing it by a certain value?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
:set columns+=10

See :help :set+=.

link|improve this answer
Perfect, thanks! – Wuffers Jul 31 '11 at 16:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.