File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -91,8 +91,26 @@ currently defined as
91
91
However, you can easily add your own. For instance, to alias h to ?,
92
92
the help command, just add ` (push '(?h ??) resize-window-alias-list) ` in your init.el.
93
93
94
+ ### Kill and restore windows ##
94
95
95
96
![ usage gif] ( images/kill_windows.gif )
97
+
98
+ In this example, we can bounce back and forth between the test and
99
+ code of resize-window. When we want to work in one exclusively, we
100
+ call up resize-window (bound with ` C-c ; ` and then hit ` k ` for kill
101
+ all the other windows. We edit our tests and then call up
102
+ resize-window and hit ` y ` for yank. Think that we just put them into a
103
+ ring buffer, but they are actually in a stack.
104
+
105
+ ## Create windows ##
106
+
107
+ Here, we want to create a bunch of windows. We can use ` 2 ` and ` 3 ` to
108
+ make splits like their native emacs commands ` C-x 2 ` and ` C-x 3 ` . Use
109
+ ` 0 ` to kill the split. If you want to go down to a single, use the
110
+ example above to hit ` k ` to kill all and then ` y ` to restore. Again,
111
+ all of the buffer resizing commands work (` f ` , ` p ` , ` b ` , ` n ` ) to
112
+ resize these buffers.
113
+
96
114
![ usage gif] ( images/navigate.gif )
97
115
98
116
## Bugs ##
You can’t perform that action at this time.
0 commit comments