标签:open vim horizon ide com ica less current and
Try:
:vert sb N
which will open a left vertical split (by default, unless you have modified some options).
To open a split to the right, on the other hand:
:vert belowright sb N
You can use :split
and :vsplit
to divide the current area into two windows with the same buffer. If you supply an argument then one of the new windows is created with the argument as a file name used for the buffer in the new window
To gain more control over how the splits are created, you can combine the :vertical
, :leftabove
and :rightbelow
commands. Also of use are the the :sfind
and :sb
commands.
:vertical sb 3
:vertical rightbelow sfind file.txt
:rightbelow sfind file.txt
Use Ctrl-W followed by one of the hjkl
movement keys.
标签:open vim horizon ide com ica less current and
原文地址:http://www.cnblogs.com/chjbbs/p/6824434.html