Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

5 Answers

up vote 48 down vote accepted
:vert help

does it for me.

share|improve this answer
1  
how can i map that so when I run :help ____ it always opens like that? – Tallboy May 7 '12 at 20:37
3  
@Tallboy Try cnoremap help vert help. This creates a command mode mapping so that when you type help in command mode you will see it expand to vert help. – Kazark Sep 6 '12 at 21:31

This should do it:

:vsplit
share|improve this answer
2  
:vsp will work as well – james Mar 10 '09 at 16:04
5  
:vs works for me – thomasrutter Nov 13 '09 at 2:51

To make help files always open in a vertical split on the right, put this in your vimrc:

augroup helpfiles
  au!
  au BufRead,BufEnter */doc/* wincmd L
augroup END

This will have the side effect of having anything with "doc" in its path open in a vertical split, but that may not be a problem for you. It isn't for me. If you would rather it open in a left vertical split, or anything else for that matter, you can change wincmd L. You can learn more about it with :he wincmd

share|improve this answer

Put this in your .vimrc:

command -nargs=* -complete=help Help vertical belowright help <args>

Now you can open a vertical help with the :Help command (notice that the first-letter is uppercase)

share|improve this answer

vim -O file1 file 2

share|improve this answer
3  
That opens files, not help. – Humphrey Bogart Aug 16 '11 at 21:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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