Paymahn Moghadasian
Paymahn Moghadasian

Reputation: 10329

Expand vim split

I've have splits open in vim which look like:

----------------
|  A |  B |  C |
----------------
|  D |    E    |
----------------

I'd like to expand the C split such that my splits look like:

----------------
|  A |  B |    |
----------|  C |
|  D |  E |    |
----------------

Is there an easy way to do this?

Upvotes: 0

Views: 137

Answers (1)

Matthew Strawbridge
Matthew Strawbridge

Reputation: 20610

Press <C-W>L in window C. See :h CTRL-W_L.

Upvotes: 3

Related Questions