@@ -15,6 +15,7 @@ CONTENTS *vimux-contents*
15
15
2.5 .............................. | VimuxClosePanes |
16
16
2.6 .............................. | VimuxInterruptRunner |
17
17
2.7 .............................. | VimuxClearRunnerHistory |
18
+ 2.8 .............................. | VimuxZoomRunner |
18
19
3. Misc ............................ | VimuxMisc |
19
20
3.1 Example Keybinding............ | VimuxExampleKeybinding |
20
21
3.2 Tslime Replacement............ | VimuxTslimeReplacement |
@@ -72,6 +73,7 @@ Furthermore there are several handy commands all starting with 'Vimux':
72
73
- | VimuxInterruptRunner |
73
74
- | VimuxPromptCommand |
74
75
- | VimuxClearRunnerHistory |
76
+ - | VimuxZoomRunner |
75
77
76
78
------------------------------------------------------------------------------
77
79
*VimuxRunCommand*
@@ -179,6 +181,18 @@ you enter tmux scroll mode inside the runner pane.
179
181
<Leader>vc :VimuxClearRunnerHistory<CR>
180
182
<
181
183
184
+ ------------------------------------------------------------------------------
185
+ *VimuxZoomRunner*
186
+ VimuxZoomRunner~
187
+
188
+ Zoom the runner pane. Once its zoomed, you will need
189
+ to use tmux "<bind-key> z" to restore the runner pane.
190
+ Zoom requires tmux version >= 1.8
191
+ >
192
+
193
+ " Zoom the tmux runner page
194
+ <Leader>vz :VimuxZoomRunner<CR>
195
+ <
182
196
183
197
==============================================================================
184
198
MISC (3) *VimuxMisc*
@@ -193,18 +207,21 @@ Full Keybind Example~
193
207
194
208
" Prompt for a command to run
195
209
map <Leader>vp :VimuxPromptCommand<CR>
196
-
210
+
197
211
" Run last command executed by VimuxRunCommand
198
212
map <Leader>vl :VimuxRunLastCommand<CR>
199
-
213
+
200
214
" Inspect runner pane
201
215
map <Leader>vi :VimuxInspectRunner<CR>
202
-
216
+
203
217
" Close vim tmux runner opened by VimuxRunCommand
204
218
map <Leader>vq :VimuxCloseRunner<CR>
205
-
219
+
206
220
" Interrupt any command running in the runner pane
207
221
map <Leader>vx :VimuxInterruptRunner<CR>
222
+
223
+ " Zoom the runner pane (use <bind-key> z to restore runner pane)
224
+ map <Leader>vz :call VimuxZoomRunner()<CR>
208
225
>
209
226
210
227
------------------------------------------------------------------------------
0 commit comments