tmux_interface 0.4.0

Rust language library for communication with TMUX via CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
/// `-1`
pub const _1_KEY: &str = "-1";
/// `-2`
pub const _2_KEY: &str = "-2";
/// `-8`
pub const _8_KEY: &str = "-8";

// constants for use as keys for subcommands
/// `-a`
pub const A_LOWERCASE_KEY: &str = "-a";
/// `-b`
pub const B_LOWERCASE_KEY: &str = "-b";
/// `-c`
pub const C_LOWERCASE_KEY: &str = "-c";
/// `-d`
pub const D_LOWERCASE_KEY: &str = "-d";
/// `-e`
pub const E_LOWERCASE_KEY: &str = "-e";
/// `-f`
pub const F_LOWERCASE_KEY: &str = "-f";
/// `-g`
pub const G_LOWERCASE_KEY: &str = "-g";
/// `-h`
pub const H_LOWERCASE_KEY: &str = "-h";
/// `-i`
pub const I_LOWERCASE_KEY: &str = "-i";
// `-j`
//pub const J_LOWERCASE_KEY: &str = "-j";
/// `-k`
pub const K_LOWERCASE_KEY: &str = "-k";
/// `-l`
pub const L_LOWERCASE_KEY: &str = "-l";
/// `-m`
pub const M_LOWERCASE_KEY: &str = "-m";
/// `-n`
pub const N_LOWERCASE_KEY: &str = "-n";
/// `-o`
pub const O_LOWERCASE_KEY: &str = "-o";
/// `-p`
pub const P_LOWERCASE_KEY: &str = "-p";
/// `-q`
pub const Q_LOWERCASE_KEY: &str = "-q";
/// `-r`
pub const R_LOWERCASE_KEY: &str = "-r";
/// `-s`
pub const S_LOWERCASE_KEY: &str = "-s";
/// `-t`
pub const T_LOWERCASE_KEY: &str = "-t";
/// `-u`
pub const U_LOWERCASE_KEY: &str = "-u";
/// `-v`
pub const V_LOWERCASE_KEY: &str = "-v";
/// `-w`
pub const W_LOWERCASE_KEY: &str = "-w";
/// `-x`
pub const X_LOWERCASE_KEY: &str = "-x";
/// `-y`
pub const Y_LOWERCASE_KEY: &str = "-y";
// `-z`
//pub const Z_LOWERCASE_KEY: &str = "-z";

/// `-A`
pub const A_UPPERCASE_KEY: &str = "-A";
/// `-B`
pub const B_UPPERCASE_KEY: &str = "-B";
/// `-C`
pub const C_UPPERCASE_KEY: &str = "-C";
/// `-D`
pub const D_UPPERCASE_KEY: &str = "-D";
/// `-E`
pub const E_UPPERCASE_KEY: &str = "-E";
/// `-F`
pub const F_UPPERCASE_KEY: &str = "-F";
/// `-G`
pub const G_UPPERCASE_KEY: &str = "-G";
/// `-H`
pub const H_UPPERCASE_KEY: &str = "-H";
/// `-I`
pub const I_UPPERCASE_KEY: &str = "-I";
/// `-J`
pub const J_UPPERCASE_KEY: &str = "-J";
/// `-K`
pub const K_UPPERCASE_KEY: &str = "-K";
/// `-L`
pub const L_UPPERCASE_KEY: &str = "-L";
/// `-M`
pub const M_UPPERCASE_KEY: &str = "-M";
/// `-N`
pub const N_UPPERCASE_KEY: &str = "-N";
/// `-O`
pub const O_UPPERCASE_KEY: &str = "-O";
/// `-P`
pub const P_UPPERCASE_KEY: &str = "-P";
// `-Q`
//pub const Q_UPPERCASE_KEY: &str = "-Q";
/// `-R`
pub const R_UPPERCASE_KEY: &str = "-R";
/// `-S`
pub const S_UPPERCASE_KEY: &str = "-S";
/// `-T`
pub const T_UPPERCASE_KEY: &str = "-T";
/// `-U`
pub const U_UPPERCASE_KEY: &str = "-U";
/// `-V`
pub const V_UPPERCASE_KEY: &str = "-V";
/// `-W`
pub const W_UPPERCASE_KEY: &str = "-W";
/// `-X`
pub const X_UPPERCASE_KEY: &str = "-X";
// `-Y`
//pub const Y_UPPERCASE_KEY: &str = "-Y";
/// `-Z`
pub const Z_UPPERCASE_KEY: &str = "-Z";
/// `-CC`
pub const CC_UPPERCASE_KEY: &str = "-CC";
/// `-EE`
pub const EE_UPPERCASE_KEY: &str = "-EE";

/// `tmux` - Default tmux binary name
pub const TMUX: &str = "tmux";

// XXX: mb CMD_ALIAS const

// tmux commands, which have no aliases:
//
// Buffers:
// - choose-buffer
//
// Clients and Sessions:
// - kill-server
// - kill-session
//
// Global and Session Environment:
// -
//
// Hooks:
// - set-hook
// - show-hooks
//
// Key bindings:
// - send-prefix
//
// Miscellaneous:
//
// - clock-mode
//
// Options:
// -
//
// Status Line:
// - command-prompt
// - display-menu
//
// Windows and panes:
// - choose-client
// - choose-tree
// - copy-mode

// Buffers
/// `choose-buffer`
pub const CHOOSE_BUFFER: &str = "choose-buffer";

/// `clear-history`
#[cfg(not(feature = "cmd_alias"))]
pub const CLEAR_HISTORY: &str = "clear-history";
/// `clearhist`
#[cfg(feature = "cmd_alias")]
pub const CLEAR_HISTORY: &str = "clearhist";

/// `delete-buffer`
#[cfg(not(feature = "cmd_alias"))]
pub const DELETE_BUFFER: &str = "delete-buffer";
/// `deleteb`
#[cfg(feature = "cmd_alias")]
pub const DELETE_BUFFER: &str = "deleteb";

/// `list-buffers`
#[cfg(not(feature = "cmd_alias"))]
pub const LIST_BUFFERS: &str = "list-buffers";
/// `lsb`
#[cfg(feature = "cmd_alias")]
pub const LIST_BUFFERS: &str = "lsb";

/// `load-buffer`
#[cfg(not(feature = "cmd_alias"))]
pub const LOAD_BUFFER: &str = "load-buffer";
/// `loadb`
#[cfg(feature = "cmd_alias")]
pub const LOAD_BUFFER: &str = "loadb";

/// `paste-buffer`
#[cfg(not(feature = "cmd_alias"))]
pub const PASTE_BUFFER: &str = "paste-buffer";
///  `pasteb`
#[cfg(feature = "cmd_alias")]
pub const PASTE_BUFFER: &str = "pasteb";

/// `save-buffer`
#[cfg(not(feature = "cmd_alias"))]
pub const SAVE_BUFFER: &str = "save-buffer";
/// `saveeb`
#[cfg(feature = "cmd_alias")]
pub const SAVE_BUFFER: &str = "saveb";

/// `set-buffer`
#[cfg(not(feature = "cmd_alias"))]
pub const SET_BUFFER: &str = "set-buffer";
/// `setb`
#[cfg(feature = "cmd_alias")]
pub const SET_BUFFER: &str = "setb";

/// `show-buffer`
#[cfg(not(feature = "cmd_alias"))]
pub const SHOW_BUFFER: &str = "show-buffer";
/// `showb`
#[cfg(feature = "cmd_alias")]
pub const SHOW_BUFFER: &str = "showb";

// Clients and sessions

/// `attach-session`
#[cfg(not(feature = "cmd_alias"))]
pub const ATTACH_SESSION: &str = "attach-session";
/// `attach`
#[cfg(feature = "cmd_alias")]
pub const ATTACH_SESSION: &str = "attach";

/// `detach-session`
#[cfg(not(feature = "cmd_alias"))]
pub const DETACH_CLIENT: &str = "detach-client";
/// `detach`
#[cfg(feature = "cmd_alias")]
pub const DETACH_CLIENT: &str = "detach";

/// `list-clients`
#[cfg(not(feature = "cmd_alias"))]
pub const LIST_CLIENTS: &str = "list-clients";
/// `lsc`
#[cfg(feature = "cmd_alias")]
pub const LIST_CLIENTS: &str = "lsc";

/// `list-commands`
#[cfg(not(feature = "cmd_alias"))]
pub const LIST_COMMANDS: &str = "list-commands";
///  `lscm`
#[cfg(feature = "cmd_alias")]
pub const LIST_COMMANDS: &str = "lscm";

/// `lock-client`
#[cfg(not(feature = "cmd_alias"))]
pub const LOCK_CLIENT: &str = "lock-client";
/// `lockc`
#[cfg(feature = "cmd_alias")]
pub const LOCK_CLIENT: &str = "lockc";

/// `new-session`
#[cfg(not(feature = "cmd_alias"))]
pub const NEW_SESSION: &str = "new-session";
/// `new`
#[cfg(feature = "cmd_alias")]
pub const NEW_SESSION: &str = "new";

/// `list-sessions`
#[cfg(not(feature = "cmd_alias"))]
pub const LIST_SESSIONS: &str = "list-sessions";
/// `ls`
#[cfg(feature = "cmd_alias")]
pub const LIST_SESSIONS: &str = "ls";

/// `refresh-client`
#[cfg(not(feature = "cmd_alias"))]
pub const REFRESH_CLIENT: &str = "refresh-client";
/// `refresh`
#[cfg(feature = "cmd_alias")]
pub const REFRESH_CLIENT: &str = "refresh";

/// `rename-session`
#[cfg(not(feature = "cmd_alias"))]
pub const RENAME_SESSION: &str = "rename-session";
/// `rename`
#[cfg(feature = "cmd_alias")]
pub const RENAME_SESSION: &str = "rename";

/// `server-access`
pub const SERVER_ACCESS: &str = "server-access";

/// `show-messages`
#[cfg(not(feature = "cmd_alias"))]
pub const SHOW_MESSAGES: &str = "show-messages";
/// `showmsgs`
#[cfg(feature = "cmd_alias")]
pub const SHOW_MESSAGES: &str = "showmsgs";

/// `source-file`
#[cfg(not(feature = "cmd_alias"))]
pub const SOURCE_FILE: &str = "source-file";
/// `source`
#[cfg(feature = "cmd_alias")]
pub const SOURCE_FILE: &str = "source";

/// `start-server`
#[cfg(not(feature = "cmd_alias"))]
pub const START_SERVER: &str = "start-server";
/// `start`
#[cfg(feature = "cmd_alias")]
pub const START_SERVER: &str = "start";

/// `suspend-client`
#[cfg(not(feature = "cmd_alias"))]
pub const SUSPEND_CLIENT: &str = "suspend-client";
/// `suspendc`
#[cfg(feature = "cmd_alias")]
pub const SUSPEND_CLIENT: &str = "suspendc";

/// `switch-client`
#[cfg(not(feature = "cmd_alias"))]
pub const SWITCH_CLIENT: &str = "switch-client";
/// `switchc`
#[cfg(feature = "cmd_alias")]
pub const SWITCH_CLIENT: &str = "switchc";

/// `kill-server`
pub const KILL_SERVER: &str = "kill-server";

/// `kill-session`
pub const KILL_SESSION: &str = "kill-session";

/// `has-session`
#[cfg(not(feature = "cmd_alias"))]
pub const HAS_SESSION: &str = "has-session";
/// `has`
#[cfg(feature = "cmd_alias")]
pub const HAS_SESSION: &str = "has";

/// `lock-session`
#[cfg(not(feature = "cmd_alias"))]
pub const LOCK_SESSION: &str = "lock-session";
/// `locks`
#[cfg(feature = "cmd_alias")]
pub const LOCK_SESSION: &str = "locks";

// Global and session environment

/// `set-environment`
#[cfg(not(feature = "cmd_alias"))]
pub const SET_ENVIRONMENT: &str = "set-environment";
/// `setenv`
#[cfg(feature = "cmd_alias")]
pub const SET_ENVIRONMENT: &str = "setenv";

/// `show-environment`
#[cfg(not(feature = "cmd_alias"))]
pub const SHOW_ENVIRONMENT: &str = "show-environment";
/// `showenv`
#[cfg(feature = "cmd_alias")]
pub const SHOW_ENVIRONMENT: &str = "showenv";

// Hooks
/// `set-hook`
pub const SET_HOOK: &str = "set-hook";

/// `show-hooks`
pub const SHOW_HOOKS: &str = "show-hooks";

// Key Bindings

/// `bind-key`
#[cfg(not(feature = "cmd_alias"))]
pub const BIND_KEY: &str = "bind-key";
/// `bind`
#[cfg(feature = "cmd_alias")]
pub const BIND_KEY: &str = "bind";

/// `list-keys`
#[cfg(not(feature = "cmd_alias"))]
pub const LIST_KEYS: &str = "list-keys";
/// `lsk`
#[cfg(feature = "cmd_alias")]
pub const LIST_KEYS: &str = "lsk";

/// `send-keys`
#[cfg(not(feature = "cmd_alias"))]
pub const SEND_KEYS: &str = "send-keys";
/// `send`
#[cfg(feature = "cmd_alias")]
pub const SEND_KEYS: &str = "send";

/// `send-prefix`
pub const SEND_PREFIX: &str = "send-prefix";

/// `unbind-key`
#[cfg(not(feature = "cmd_alias"))]
pub const UNBIND_KEY: &str = "unbind-key";
/// `unbind`
#[cfg(feature = "cmd_alias")]
pub const UNBIND_KEY: &str = "unbind";

// Miscellaneous

/// `clock-mode`
pub const CLOCK_MODE: &str = "clock-mode";

/// `lock-server`
#[cfg(not(feature = "cmd_alias"))]
pub const LOCK_SERVER: &str = "lock-server";
/// `lock`
#[cfg(feature = "cmd_alias")]
pub const LOCK_SERVER: &str = "lock";

/// `run-shell`
#[cfg(not(feature = "cmd_alias"))]
pub const RUN_SHELL: &str = "run-shell";
/// `run`
#[cfg(feature = "cmd_alias")]
pub const RUN_SHELL: &str = "run";

/// `server-info`
#[cfg(not(feature = "cmd_alias"))]
pub const SERVER_INFO: &str = "server-info";
/// `info`
#[cfg(feature = "cmd_alias")]
pub const SERVER_INFO: &str = "info";

/// `wait-for`
#[cfg(not(feature = "cmd_alias"))]
pub const WAIT_FOR: &str = "wait-for";
/// `wait`
#[cfg(feature = "cmd_alias")]
pub const WAIT_FOR: &str = "wait";

/// `if-shell`
#[cfg(not(feature = "cmd_alias"))]
pub const IF_SHELL: &str = "if-shell";
/// `if`
#[cfg(feature = "cmd_alias")]
pub const IF_SHELL: &str = "if";

// Options

/// `set-option`
#[cfg(not(feature = "cmd_alias"))]
pub const SET_OPTION: &str = "set-option";
/// `set`
#[cfg(feature = "cmd_alias")]
pub const SET_OPTION: &str = "set";

/// `set-window-option`
#[cfg(not(feature = "cmd_alias"))]
pub const SET_WINDOW_OPTION: &str = "set-window-option";
/// `setw`
#[cfg(feature = "cmd_alias")]
pub const SET_WINDOW_OPTION: &str = "setw";

/// `show-options`
#[cfg(not(feature = "cmd_alias"))]
pub const SHOW_OPTIONS: &str = "show-options";
/// `show`
#[cfg(feature = "cmd_alias")]
pub const SHOW_OPTIONS: &str = "show";

/// `show-window-options`
#[cfg(not(feature = "cmd_alias"))]
pub const SHOW_WINDOW_OPTIONS: &str = "show-window-options";
/// `showw`
#[cfg(feature = "cmd_alias")]
pub const SHOW_WINDOW_OPTIONS: &str = "showw";

// Status Line

/// `clear-prompt-history`
#[cfg(not(feature = "cmd_alias"))]
pub const CLEAR_PROMPT_HISTORY: &str = "clear-prompt-history";
/// `clearphist`
#[cfg(feature = "cmd_alias")]
pub const CLEAR_PROMPT_HISTORY: &str = "clearphist";

/// `command-prompt`
pub const COMMAND_PROMPT: &str = "command-prompt";

/// `confirm-before`
#[cfg(not(feature = "cmd_alias"))]
pub const CONFIRM_BEFORE: &str = "confirm-before";
/// `confirm`
#[cfg(feature = "cmd_alias")]
pub const CONFIRM_BEFORE: &str = "confirm";

/// `display-menu`
#[cfg(not(feature = "cmd_alias"))]
pub const DISPLAY_MENU: &str = "display-menu";
#[cfg(feature = "cmd_alias")]
pub const DISPLAY_MENU: &str = "menu";

/// `display-message`
#[cfg(not(feature = "cmd_alias"))]
pub const DISPLAY_MESSAGE: &str = "display-message";
/// `display`
#[cfg(feature = "cmd_alias")]
pub const DISPLAY_MESSAGE: &str = "display";

/// `display-popup`
#[cfg(not(feature = "cmd_alias"))]
pub const DISPLAY_POPUP: &str = "display-popup";
/// `popup`
#[cfg(feature = "cmd_alias")]
pub const DISPLAY_POPUP: &str = "popup";

/// `clear-prompt-history`
#[cfg(not(feature = "cmd_alias"))]
pub const SHOW_PROMPT_HISTORY: &str = "show-prompt-history";
/// `clearphist`
#[cfg(feature = "cmd_alias")]
pub const SHOW_PROMPT_HISTORY: &str = "showphist";

// Windows and panes

/// `break-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const BREAK_PANE: &str = "break-pane";
/// `breakp`
#[cfg(feature = "cmd_alias")]
pub const BREAK_PANE: &str = "breakp";

/// `capture-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const CAPTURE_PANE: &str = "capture-pane";
/// `capturep`
#[cfg(feature = "cmd_alias")]
pub const CAPTURE_PANE: &str = "capturep";

/// `choose-client`
pub const CHOOSE_CLIENT: &str = "choose-client";

/// `choose-list`
pub const CHOOSE_LIST: &str = "choose-list";

/// `choose-session`
pub const CHOOSE_SESSION: &str = "choose-session";

/// `choose-tree`
pub const CHOOSE_TREE: &str = "choose-tree";

/// `choose-window`
pub const CHOOSE_WINDOW: &str = "choose-window";

/// `copy-mode`
pub const COPY_MODE: &str = "copy-mode";

/// `customize-mode`
pub const CUSTOMIZE_MODE: &str = "customize-mode";

/// `display-panes`
#[cfg(not(feature = "cmd_alias"))]
pub const DISPLAY_PANES: &str = "display-panes";
/// `displayp`
#[cfg(feature = "cmd_alias")]
pub const DISPLAY_PANES: &str = "displayp";

/// `find-window`
#[cfg(not(feature = "cmd_alias"))]
pub const FIND_WINDOW: &str = "find-window";
/// `findw`
#[cfg(feature = "cmd_alias")]
pub const FIND_WINDOW: &str = "findw";

/// `join-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const JOIN_PANE: &str = "join-pane";
/// `joinp`
#[cfg(feature = "cmd_alias")]
pub const JOIN_PANE: &str = "joinp";

/// `kill-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const KILL_PANE: &str = "kill-pane";
/// `killp`
#[cfg(feature = "cmd_alias")]
pub const KILL_PANE: &str = "killp";

/// `kill-window`
#[cfg(not(feature = "cmd_alias"))]
pub const KILL_WINDOW: &str = "kill-window";
/// `killw`
#[cfg(feature = "cmd_alias")]
pub const KILL_WINDOW: &str = "killw";

/// `last-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const LAST_PANE: &str = "last-pane";
/// `lastp`
#[cfg(feature = "cmd_alias")]
pub const LAST_PANE: &str = "lastp";

/// `last-window`
#[cfg(not(feature = "cmd_alias"))]
pub const LAST_WINDOW: &str = "last-window";
/// `last`
#[cfg(feature = "cmd_alias")]
pub const LAST_WINDOW: &str = "last";

/// `link-window`
#[cfg(not(feature = "cmd_alias"))]
pub const LINK_WINDOW: &str = "link-window";
/// `linkw`
#[cfg(feature = "cmd_alias")]
pub const LINK_WINDOW: &str = "linkw";

/// `list-panes`
#[cfg(not(feature = "cmd_alias"))]
pub const LIST_PANES: &str = "list-panes";
/// `lsp`
#[cfg(feature = "cmd_alias")]
pub const LIST_PANES: &str = "lsp";

/// `list-windows`
#[cfg(not(feature = "cmd_alias"))]
pub const LIST_WINDOWS: &str = "list-windows";
/// `lsw`
#[cfg(feature = "cmd_alias")]
pub const LIST_WINDOWS: &str = "lsw";

/// `move-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const MOVE_PANE: &str = "move-pane";
/// `movep`
#[cfg(feature = "cmd_alias")]
pub const MOVE_PANE: &str = "movep";

/// `move-window`
#[cfg(not(feature = "cmd_alias"))]
pub const MOVE_WINDOW: &str = "move-window";
/// `movew`
#[cfg(feature = "cmd_alias")]
pub const MOVE_WINDOW: &str = "movew";

/// `new-window`
#[cfg(not(feature = "cmd_alias"))]
pub const NEW_WINDOW: &str = "new-window";
/// `neww`
#[cfg(feature = "cmd_alias")]
pub const NEW_WINDOW: &str = "neww";

/// `next-layout`
#[cfg(not(feature = "cmd_alias"))]
pub const NEXT_LAYOUT: &str = "next-layout";
/// `nextl`
#[cfg(feature = "cmd_alias")]
pub const NEXT_LAYOUT: &str = "nextl";

/// `next-window`
#[cfg(not(feature = "cmd_alias"))]
pub const NEXT_WINDOW: &str = "next-window";
/// `next`
#[cfg(feature = "cmd_alias")]
pub const NEXT_WINDOW: &str = "next";

/// `pipe-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const PIPE_PANE: &str = "pipe-pane";
/// `pipep`
#[cfg(feature = "cmd_alias")]
pub const PIPE_PANE: &str = "pipep";

/// `previous-layout`
#[cfg(not(feature = "cmd_alias"))]
pub const PREVIOUS_LAYOUT: &str = "previous-layout";
/// `prevl`
#[cfg(feature = "cmd_alias")]
pub const PREVIOUS_LAYOUT: &str = "prevl";

/// `previous-window`
#[cfg(not(feature = "cmd_alias"))]
pub const PREVIOUS_WINDOW: &str = "previous-window";
/// `prev`
#[cfg(feature = "cmd_alias")]
pub const PREVIOUS_WINDOW: &str = "prev";

/// `rename-window`
#[cfg(not(feature = "cmd_alias"))]
pub const RENAME_WINDOW: &str = "rename-window";
/// `renamew`
#[cfg(feature = "cmd_alias")]
pub const RENAME_WINDOW: &str = "renamew";

/// `resize-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const RESIZE_PANE: &str = "resize-pane";
/// `resizep`
#[cfg(feature = "cmd_alias")]
pub const RESIZE_PANE: &str = "resizep";

/// `resize-window`
#[cfg(not(feature = "cmd_alias"))]
pub const RESIZE_WINDOW: &str = "resize-window";
/// `resizew`
#[cfg(feature = "cmd_alias")]
pub const RESIZE_WINDOW: &str = "resizew";

/// `respawn-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const RESPAWN_PANE: &str = "respawn-pane";
/// `respawnp`
#[cfg(feature = "cmd_alias")]
pub const RESPAWN_PANE: &str = "respawnp";

/// `respawn-window`
#[cfg(not(feature = "cmd_alias"))]
pub const RESPAWN_WINDOW: &str = "respawn-window";
/// `respawnw`
#[cfg(feature = "cmd_alias")]
pub const RESPAWN_WINDOW: &str = "respawnw";

/// `rotate-window`
#[cfg(not(feature = "cmd_alias"))]
pub const ROTATE_WINDOW: &str = "rotate-window";
/// `rotatew`
#[cfg(feature = "cmd_alias")]
pub const ROTATE_WINDOW: &str = "rotatew";

/// `select-layout`
#[cfg(not(feature = "cmd_alias"))]
pub const SELECT_LAYOUT: &str = "select-layout";
/// `selectl`
#[cfg(feature = "cmd_alias")]
pub const SELECT_LAYOUT: &str = "selectl";

/// `select-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const SELECT_PANE: &str = "select-pane";
/// `selectp`
#[cfg(feature = "cmd_alias")]
pub const SELECT_PANE: &str = "selectp";

/// `select-window`
#[cfg(not(feature = "cmd_alias"))]
pub const SELECT_WINDOW: &str = "select-window";
/// `selectw`
#[cfg(feature = "cmd_alias")]
pub const SELECT_WINDOW: &str = "selectw";

/// `split-window`
#[cfg(not(feature = "cmd_alias"))]
pub const SPLIT_WINDOW: &str = "split-window";
/// `splitw`
#[cfg(feature = "cmd_alias")]
pub const SPLIT_WINDOW: &str = "splitw";

/// `swap-pane`
#[cfg(not(feature = "cmd_alias"))]
pub const SWAP_PANE: &str = "swap-pane";
/// `swapp`
#[cfg(feature = "cmd_alias")]
pub const SWAP_PANE: &str = "swapp";

/// `swap-window`
#[cfg(not(feature = "cmd_alias"))]
pub const SWAP_WINDOW: &str = "swap-window";
/// `swapw`
#[cfg(feature = "cmd_alias")]
pub const SWAP_WINDOW: &str = "swapw";

/// `unlink-window`
#[cfg(not(feature = "cmd_alias"))]
pub const UNLINK_WINDOW: &str = "unlink-window";
/// `unlinkw`
#[cfg(feature = "cmd_alias")]
pub const UNLINK_WINDOW: &str = "unlinkw";