tags:

views:

2034

answers:

2

Is there a way to get vim help to open in a vertical split pane rather than a horizontal one?

EDIT: to add to 42's answer, you can also control whether the window splits on the left/top (to[pleft]) or right/bottom (bo[tright])

e.g. :vert bo help

+16  A: 
:vert help

does it for me.

42
+3  A: 

This should do it:

:vsplit
Berzemus
:vsp will work as well
james
:vs works for me
thomasrutter
Tilting my head 90 degrees works for me.
mwc