mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 15:18:01 +00:00
21 lines
461 B
Markdown
21 lines
461 B
Markdown
# Horizontal to Vertical and Back Again
|
|
|
|
If you have two Vim windows open with a horizontal split and you want to
|
|
quickly switch them to be vertically split, you can type the following two
|
|
key bindings:
|
|
|
|
```
|
|
Ctrl-w t
|
|
Ctrl-w H
|
|
```
|
|
|
|
To go from vertically split windows to horizontally split windows you can
|
|
instead use:
|
|
|
|
```
|
|
Ctrl-w t
|
|
Ctrl-w K
|
|
```
|
|
|
|
[source](http://stackoverflow.com/questions/1269603/to-switch-from-vertical-split-to-horizontal-split-fast-in-vim)
|