@@ -35,9 +35,9 @@ eval "$(_TMUXP_COMPLETE=zsh_source tmuxp)"
35
35
``` console
36
36
$ tmuxp shell
37
37
38
- $ tmuxp shell < session_name>
38
+ $ tmuxp shell [ session_name]
39
39
40
- $ tmuxp shell < session_name> < window_name>
40
+ $ tmuxp shell [ session_name] [ window_name]
41
41
42
42
$ tmuxp shell -c ' python code'
43
43
```
@@ -129,10 +129,10 @@ my_window
129
129
130
130
## Freeze sessions
131
131
132
- ```
133
- tmuxp freeze
134
- tmuxp freeze < session_name>
135
- tmuxp freeze --force < session_name>
132
+ ``` console
133
+ $ tmuxp freeze
134
+ $ tmuxp freeze [ session_name]
135
+ $ tmuxp freeze --force [ session_name]
136
136
```
137
137
138
138
You can save the state of your tmux session by freezing it.
@@ -174,7 +174,7 @@ Absolute and relative directory paths are supported.
174
174
175
175
``` console
176
176
177
- $ tmuxp load < filename>
177
+ $ tmuxp load [ filename]
178
178
179
179
```
180
180
@@ -211,7 +211,7 @@ without being attached. The last one will be attached if there is no
211
211
212
212
``` console
213
213
214
- $ tmuxp load < filename1> < filename2> ...
214
+ $ tmuxp load [ filename1] [ filename2] ...
215
215
216
216
```
217
217
@@ -220,7 +220,7 @@ are created, the last session is named from the terminal.
220
220
221
221
``` console
222
222
223
- $ tmuxp load -s < new_session_name> < filename1> ...
223
+ $ tmuxp load -s [ new_session_name] [ filename1] ...
224
224
225
225
```
226
226
@@ -230,8 +230,8 @@ debugging purposes. the log level can be controlled with the global
230
230
231
231
``` console
232
232
233
- $ tmuxp load < filename> --log-file < log_filename>
234
- $ tmuxp --log-level < LEVEL> load < filename> --log-file < log_filename>
233
+ $ tmuxp load [ filename] --log-file [ log_filename]
234
+ $ tmuxp --log-level [ LEVEL] load [ filename] --log-file [ log_filename]
235
235
236
236
```
237
237
@@ -261,24 +261,24 @@ environment:
261
261
262
262
### From teamocil
263
263
264
- ```
265
- tmuxp import teamocil /path/to/file.{json,yaml}
264
+ ``` console
265
+ $ tmuxp import teamocil /path/to/file.{json,yaml}
266
266
```
267
267
268
268
(import-tmuxinator)=
269
269
270
270
### From tmuxinator
271
271
272
- ```
273
- tmuxp import tmuxinator /path/to/file.{json,yaml}
272
+ ``` console
273
+ $ tmuxp import tmuxinator /path/to/file.{json,yaml}
274
274
```
275
275
276
276
(convert-config)=
277
277
278
278
## Convert between YAML and JSON
279
279
280
- ```
281
- tmuxp convert /path/to/file.{json,yaml}
280
+ ``` console
281
+ $ tmuxp convert /path/to/file.{json,yaml}
282
282
```
283
283
284
284
tmuxp automatically will prompt to convert ` .yaml ` to ` .json ` and
0 commit comments