Given split windows like this:
|------|-------|
|1 |2 |
| | |
|------|-------|
|3 |4 |
| | |
|------|-------|
There are two options to collaps the split windows:
- delete-other-windows (Ctrl-x 1)
- delete-window (Ctrl-x 0)
Question: is there a way to control how they collapse?
For example, how can I collapse like this:
|------|-------|
|1 |
| |
|------|-------|
|3 |4 |
| | |
|------|-------|
, this:
|------|-------|
|2 |
| |
|------|-------|
|3 |4 |
| | |
|------|-------|
, this:
|------|-------|
|1 |2 |
| | |
| |-------|
| |4 |
| | |
|------|-------|
, or this:
|------|-------|
|3 |2 |
| | |
| |-------|
| |4 |
| | |
|------|-------|
?