How to Split Screens in vim
Liz Lam

Liz Lam @grepliz

About: I love open source, coffee and tinkering.

Location:
Oakland
Joined:
Jan 7, 2019

How to Split Screens in vim

Publish Date: Oct 14 '19
11 0

Have you ever found yourself going through a long file in vim and wishing you could split your screen? Perhaps you want to make some comparison with a chunk at the top of file with something in the middle. With a few keystrokes you can do exactly that.

Split Horizontally

Horizontal Screen Split

To split the screen horizontally:
a.) Hit CTRL + w
b.) and then s.

If you want to navigate between the screen:
a.) Hit CTRL + w
b.) and then w.

To exit out of one of the screen:
a.) Go into command mode (i.e. hit ESC)
b.) and quit as usual: :q.

Split Vertically

Vertical Screen Split

To split the screen vertically, much like splitting horizontally:
a.) Start by hitting CTRL + w
b.) but then hit v (instead of s).

Navigating between the split screens is the same (CTRL + w + w).

Though horizontal splitting works great. I find vertical splitting to be the most useful.

Combine Both

Vertical and Horizontal Screen Splitting

Why choose? It is possible to combine both horizontal and vertical screen splitting as well.

Comments 0 total

    Add comment