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
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_1")))]
use crate::ModeMouse;
#[cfg(feature = "tmux_2_3")]
use crate::PaneBorderStatus;
#[cfg(feature = "tmux_2_9")]
use crate::WindowSize;
use crate::{ClockModeStyle, StatusKeys, Switch};

/// tmux ^2_6:
/// ```text
/// activity-action
/// ```
#[cfg(feature = "tmux_2_6")]
pub const ACTIVITY_ACTION: &str = "activity-action";

/// tmux ^1.0:
/// ```text
/// aggressive-resize
/// ```
#[cfg(feature = "tmux_1_0")]
pub const AGGRESSIVE_RESIZE: &str = "aggressive-resize";

/// tmux ^1.6 v3.0:
/// ```text
/// allow-rename
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_3_0")))]
pub const ALLOW_RENAME: &str = "allow-rename";

/// ```text
/// alternate-screen
/// ```
#[cfg(all(feature = "tmux_1_2", not(feature = "tmux_3_0")))]
pub const ALTERNATE_SCREEN: &str = "alternate-screen";

/// ```text
/// automatic-rename
/// ```
#[cfg(feature = "tmux_1_0")] // 0.8
pub const AUTOMATIC_RENAME: &str = "automatic-rename";

/// ```text
/// automatic-rename-format
/// ```
#[cfg(feature = "tmux_1_9")]
pub const AUTOMATIC_RENAME_FORMAT: &str = "automatic-rename-format";

/// ```text
/// c0-change-interval
/// ```
#[cfg(all(feature = "tmux_1_7", not(feature = "tmux_2_1")))]
pub const C0_CHANGE_INTERVAL: &str = "c0-change-interval";

/// ```text
/// c0-change-trigger
/// ```
#[cfg(all(feature = "tmux_1_7", not(feature = "tmux_2_1")))]
pub const C0_CHANGE_TRIGGER: &str = "c0-change-trigger";

/// ```text
/// clock-mode-colour
/// ```
#[cfg(feature = "tmux_1_0")]
pub const CLOCK_MODE_COLOUR: &str = "clock-mode-colour";

/// ```text
/// clock-mode-style
/// ```
#[cfg(feature = "tmux_1_0")]
pub const CLOCK_MODE_STYLE: &str = "clock-mode-style";

/// ```text
/// force-height
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_9")))]
pub const FORCE_HEIGHT: &str = "force-height";

/// ```text
/// force-width
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_9")))]
pub const FORCE_WIDTH: &str = "force-width";

/// ```text
/// layout-history-limit
/// ```
#[cfg(all(feature = "tmux_1_7", not(feature = "tmux_1_8")))]
pub const LAYOUT_HISTORY_LIMIT: &str = "layout-history-limit";

/// ```text
/// main-pane-height
/// ```
#[cfg(feature = "tmux_1_0")]
pub const MAIN_PANE_HEIGHT: &str = "main-pane-height";

/// ```text
/// main-pane-width
/// ```
#[cfg(feature = "tmux_1_0")]
pub const MAIN_PANE_WIDTH: &str = "main-pane-width";

/// ```text
/// mode-attr
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const MODE_ATTR: &str = "mode-attr";

/// ```text
/// mode-bg
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const MODE_BG: &str = "mode-bg";

/// ```text
/// mode-fg
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const MODE_FG: &str = "mode-fg";

/// ```text
/// mode-keys
/// ```
#[cfg(feature = "tmux_1_0")]
pub const MODE_KEYS: &str = "mode-keys";

/// ```text
/// mode-mouse
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_1")))]
pub const MODE_MOUSE: &str = "mode-mouse";

/// ```text
/// mode-style
/// ```
#[cfg(feature = "tmux_1_9")]
pub const MODE_STYLE: &str = "mode-style";

/// ```text
/// monitor-activity
/// ```
#[cfg(feature = "tmux_1_0")]
pub const MONITOR_ACTIVITY: &str = "monitor-activity";

/// ```text
/// monitor-content
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_0")))]
pub const MONITOR_CONTENT: &str = "monitor-content";

/// ```text
/// monitor-bell
/// ```
#[cfg(feature = "tmux_2_6")]
pub const MONITOR_BELL: &str = "monitor-bell";

/// ```text
/// monitor-silence
/// ```
#[cfg(feature = "tmux_1_4")]
pub const MONITOR_SILENCE: &str = "monitor-silence";

/// ```text
/// other-pane-height
/// ```
#[cfg(feature = "tmux_1_4")]
pub const OTHER_PANE_HEIGHT: &str = "other-pane-height";

/// ```text
/// other-pane-width
/// ```
#[cfg(feature = "tmux_1_4")]
pub const OTHER_PANE_WIDTH: &str = "other-pane-width";

/// ```text
/// pane-active-border-style
/// ```
#[cfg(feature = "tmux_1_9")]
pub const PANE_ACTIVE_BORDER_STYLE: &str = "pane-active-border-style";

/// ```text
/// pane-active-border-bg
/// ```
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_9")))]
pub const PANE_ACTIVE_BORDER_BG: &str = "pane-active-border-bg";

/// ```text
/// pane-active-border-fg
/// ```
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_9")))]
pub const PANE_ACTIVE_BORDER_FG: &str = "pane-active-border-fg";

/// ```text
/// pane-base-index
/// ```
#[cfg(feature = "tmux_1_6")]
pub const PANE_BASE_INDEX: &str = "pane-base-index";

/// ```text
/// pane-border-bg
/// ```
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_9")))]
pub const PANE_BORDER_BG: &str = "pane-border-bg";

/// ```text
/// pane-border-fg
/// ```
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_9")))]
pub const PANE_BORDER_FG: &str = "pane-border-fg";

/// ```text
/// pane-border-format
/// ```
#[cfg(feature = "tmux_2_3")]
pub const PANE_BORDER_FORMAT: &str = "pane-border-format";

/// ```text
/// pane-border-status
/// ```
#[cfg(feature = "tmux_2_3")]
pub const PANE_BORDER_STATUS: &str = "pane-border-status";

/// ```text
/// pane-border-style
/// ```
#[cfg(feature = "tmux_2_0")]
pub const PANE_BORDER_STYLE: &str = "pane-border-style";

/// ```text
/// remain-on-exit
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_3_0")))]
pub const REMAIN_ON_EXIT: &str = "remain-on-exit";

/// ```text
/// synchronize-panes
/// ```
#[cfg(all(feature = "tmux_1_2", not(feature = "tmux_3_2")))]
pub const SYNCHRONIZE_PANES: &str = "synchronize-panes";

/// ```text
/// utf8
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_2")))]
pub const UTF8: &str = "utf8";

/// ```text
/// window-active-style
/// ```
#[cfg(all(feature = "tmux_2_1", not(feature = "tmux_3_0")))]
pub const WINDOW_ACTIVE_STYLE: &str = "window-active-style";

/// ```text
/// window-status-bell-attr
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_BELL_ATTR: &str = "window-status-bell-attr";

/// ```text
/// window-status-bell-bg
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_BELL_BG: &str = "window-status-bell-bg";

/// ```text
/// window-status-bell-fg
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_BELL_FG: &str = "window-status-bell-fg";

/// ```text
/// window-status-content-attr
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CONTENT_ATTR: &str = "window-status-content-attr";

/// ```text
/// window-status-content-bg
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CONTENT_BG: &str = "window-status-content-bg";

/// ```text
/// window-status-content-fg
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CONTENT_FG: &str = "window-status-content-fg";

/// ```text
/// window-status-activity-attr
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_ACTIVITY_ATTR: &str = "window-status-activity-attr";

/// ```text
/// window-status-activity-bg
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_ACTIVITY_BG: &str = "window-status-activity-bg";

/// ```text
/// window-status-activity-fg
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_ACTIVITY_FG: &str = "window-status-activity-fg";

/// ```text
/// window-status-attr
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_ATTR: &str = "window-status-attr";

/// ```text
/// window-status-bg
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_BG: &str = "window-status-bg";

/// ```text
/// window-status-fg
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_FG: &str = "window-status-fg";

/// ```text
/// window-status-current-attr
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CURRENT_ATTR: &str = "window-status-current-attr";

/// ```text
/// window-status-current-bg
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CURRENT_BG: &str = "window-status-current-bg";

/// ```text
/// window-status-current-fg
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CURRENT_FG: &str = "window-status-current-fg";

/// ```text
/// window-status-alert-attr
/// ```
#[cfg(all(feature = "tmux_1_3", not(feature = "tmux_1_6")))]
pub const WINDOW_STATUS_ALERT_ATTR: &str = "window-status-alert-attr";

/// ```text
/// window-status-alert-bg
/// ```
#[cfg(all(feature = "tmux_1_3", not(feature = "tmux_1_6")))]
pub const WINDOW_STATUS_ALERT_BG: &str = "window-status-alert-bg";

/// ```text
/// window-status-alert-fg
/// ```
#[cfg(all(feature = "tmux_1_3", not(feature = "tmux_1_6")))]
pub const WINDOW_STATUS_ALERT_FG: &str = "window-status-alert-fg";

/// ```text
/// window-status-activity-style
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_ACTIVITY_STYLE: &str = "window-status-activity-style";

/// ```text
/// window-status-bell-style
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_BELL_STYLE: &str = "window-status-bell-style";

/// ```text
/// window-status-content-style
/// ```
#[cfg(all(feature = "tmux_1_9", not(feature = "tmux_2_0")))]
pub const WINDOW_STATUS_CONTENT_STYLE: &str = "window-status-content-style";

/// ```text
/// window-status-current-format
/// ```
#[cfg(feature = "tmux_1_2")]
pub const WINDOW_STATUS_CURRENT_FORMAT: &str = "window-status-current-format";

/// ```text
/// window-status-last-attr
/// ```
#[cfg(all(feature = "tmux_1_8", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_LAST_ATTR: &str = "window-status-last-attr";

/// ```text
/// window-status-last-bg
/// ```
#[cfg(all(feature = "tmux_1_8", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_LAST_BG: &str = "window-status-last-bg";

/// ```text
/// window-status-last-fg
/// ```
#[cfg(all(feature = "tmux_1_8", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_LAST_FG: &str = "window-status-last-fg";

/// ```text
/// window-status-current-style
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_CURRENT_STYLE: &str = "window-status-current-style";

/// ```text
/// window-status-format
/// ```
#[cfg(feature = "tmux_1_2")]
pub const WINDOW_STATUS_FORMAT: &str = "window-status-format";

/// ```text
/// window-status-last-style
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_LAST_STYLE: &str = "window-status-last-style";

/// ```text
/// window-status-separator
/// ```
#[cfg(feature = "tmux_1_7")]
pub const WINDOW_STATUS_SEPARATOR: &str = "window-status-separator";

/// ```text
/// window-status-style
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_STYLE: &str = "window-status-style";

/// ```text
/// window-size
/// ```
#[cfg(feature = "tmux_2_9")]
pub const WINDOW_SIZE: &str = "window-size";

/// ```text
/// word-separators
/// ```
#[cfg(all(feature = "tmux_1_2", not(feature = "tmux_1_6")))]
pub const WORD_SEPARATORS: &str = "word-separators";

/// ```text
/// window-style
/// ```
#[cfg(all(feature = "tmux_2_1", not(feature = "tmux_3_0")))]
pub const WINDOW_STYLE: &str = "window-style";

/// ```text
/// wrap-search
/// ```
#[cfg(feature = "tmux_1_7")]
pub const WRAP_SEARCH: &str = "wrap-search";

/// ```text
/// xterm-keys
/// ```
#[cfg(feature = "tmux_1_0")]
pub const XTERM_KEYS: &str = "xterm-keys";

/// ```text
/// aggressive-resize
/// ```
#[cfg(feature = "tmux_1_0")]
pub const AGGRESSIVE_RESIZE_DEFAULT: Switch = Switch::Off;

/// ```text
/// allow-passthrough off
/// ```

/// tmux ^2.7 v3.0:
/// ```text
/// allow-rename off
/// ```
///
/// tmux ^1.6 v2.6:
/// ```text
/// allow-rename on
/// ```
#[cfg(all(feature = "tmux_2_7", not(feature = "tmux_3_0")))]
pub const ALLOW_RENAME_DEFAULT: Switch = Switch::Off;
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_2_7")))]
pub const ALLOW_RENAME_DEFAULT: Switch = Switch::On;

/// tmux ^1.2 v3.0:
/// ```text
/// alternate-screen on
/// ```
#[cfg(all(feature = "tmux_1_2", not(feature = "tmux_3_0")))]
pub const ALTERNATE_SCREEN_DEFAULT: Switch = Switch::On;

/// tmux ^1.0:
/// ```text
/// automatic-rename on
/// ```
#[cfg(feature = "tmux_1_0")] // 0.8
pub const AUTOMATIC_RENAME_DEFAULT: Switch = Switch::On;

/// tmux ^1.9:
/// ```text
/// automatic-rename-format "#{?pane_in_mode,[tmux],#{pane_current_command}}#{?pane_dead,[dead],}"
/// ```
#[cfg(feature = "tmux_1_9")]
pub const AUTOMATIC_RENAME_FORMAT_DEFAULT: &str =
    "#{?pane_in_mode,[tmux],#{pane_current_command}}#{?pane_dead,[dead],}";

/// tmux ^1.7 v2.1:
/// ```text
/// c0-change-interval interval
/// ```
#[cfg(all(feature = "tmux_1_7", not(feature = "tmux_2_1")))]
pub const C0_CHANGE_INTERVAL_DEFAULT: usize = 100;

/// tmux ^1.7 v2.1:
/// ```text
/// c0-change-trigger trigger
/// ```
#[cfg(all(feature = "tmux_1_7", not(feature = "tmux_2_1")))]
pub const C0_CHANGE_TRIGGER_DEFAULT: usize = 250;

/// tmux ^1.0:
/// ```text
/// clock-mode-colour blue
/// ```
// default_num = 4
// colour.c
#[cfg(feature = "tmux_1_0")]
pub const CLOCK_MODE_COLOUR_DEFAULT: &str = "blue";

/// tmux ^1.0:
/// ```text
/// clock-mode-style 24
/// ```
// default_num = 1
// options.c
#[cfg(feature = "tmux_1_0")]
pub const CLOCK_MODE_STYLE_DEFAULT: ClockModeStyle = ClockModeStyle::H24;

/// tmux ^1.0 v2.9:
/// ```text
/// force-height 0
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_9")))]
pub const FORCE_HEIGHT_DEFAULT: usize = 0;

/// tmux ^1.0 v2.9:
/// ```text
/// force-width 0
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_9")))]
pub const FORCE_WIDTH_DEFAULT: usize = 0;

/// tmux ^1.0 v1.8:
/// ```text
/// layout-history-limit 20
/// ```
#[cfg(all(feature = "tmux_1_7", not(feature = "tmux_1_8")))]
pub const LAYOUT_HISTORY_LIMIT_DEFAULT: usize = 20;

/// tmux ^1.0:
/// ```text
/// main-pane-height 24
/// ```
#[cfg(feature = "tmux_1_0")]
pub const MAIN_PANE_HEIGHT_DEFAULT: usize = 24;

/// tmux ^1.0:
/// ```text
/// main-pane-width 80
/// ```
#[cfg(feature = "tmux_1_0")]
pub const MAIN_PANE_WIDTH_DEFAULT: usize = 80;

/// tmux ^1.0 v1.9:
/// ```text
/// mode-attr none
/// ```
// default_num = 0
// attributes.c
// FIXME: type change, create attributes type
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const MODE_ATTR_DEFAULT: &str = "none";

/// tmux ^1.0 v1.9:
/// ```text
/// mode-bg yellow
/// ```
// default_num = 3
// colour.c
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const MODE_BG_DEFAULT: &str = "yellow";

/// tmux ^1.0 v1.9:
/// ```text
/// mode-fg black
/// ```
// default_num = 0
// colour.c
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const MODE_FG_DEFAULT: &str = "black";

/// tmux ^1.0:
/// ```text
/// mode-keys emacs
/// ```
// default_num = MODEKEY_EMACS = 0
#[cfg(feature = "tmux_1_0")]
pub const MODE_KEYS_DEFAULT: StatusKeys = StatusKeys::Emacs;

/// tmux ^1.0 v2.1:
/// ```text
/// mode-mouse off
/// ```
// default_num = 0
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_1")))]
pub const MODE_MOUSE_DEFAULT: ModeMouse = ModeMouse::Off;

/// tmux ^1.9:
/// ```text
/// mode-style bg=yellow,fg=black
/// ```
#[cfg(feature = "tmux_1_9")]
pub const MODE_STYLE_DEFAULT: &str = "bg=yellow,fg=black";

/// tmux ^1.0:
/// ```text
/// monitor-activity off
/// ```
// default_num = 0 (OPTIONS_TABLE_FLAG)
#[cfg(feature = "tmux_1_0")]
pub const MONITOR_ACTIVITY_DEFAULT: Switch = Switch::Off;

/// tmux ^1.0 v2.0:
/// ```text
/// monitor-content ""
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_0")))]
pub const MONITOR_CONTENT_DEFAULT: &str = "";

/// tmux ^2.6:
/// ```text
/// monitor-bell on
/// ```
#[cfg(feature = "tmux_2_6")]
pub const MONITOR_BELL_DEFAULT: Switch = Switch::On;

/// tmux ^1.4:
/// ```text
/// monitor-silence 0
/// ```
#[cfg(feature = "tmux_1_4")]
pub const MONITOR_SILENCE_DEFAULT: usize = 0;

/// tmux ^1.4:
/// ```text
/// other-pane-height 0
/// ```
// number -> str? ^3.3?
#[cfg(feature = "tmux_1_4")]
pub const OTHER_PANE_HEIGHT_DEFAULT: usize = 0;

/// tmux ^1.4:
/// ```text
/// other-pane-width 0
/// ```
// number -> str? ^3.3?
#[cfg(feature = "tmux_1_4")]
pub const OTHER_PANE_WIDTH_DEFAULT: usize = 0;

/// tmux ^3.2:
/// ```text
/// pane-active-border-style #{?pane_in_mode,fg=yellow,#{?synchronize-panes,fg=red,fg=green}}
/// ```
///
/// tmux ^1.9 v3.2:
/// ```text
/// pane-active-border-style fg=green
/// ```
#[cfg(all(feature = "tmux_1_9", not(feature = "tmux_3_2")))]
pub const PANE_ACTIVE_BORDER_STYLE_DEFAULT: &str = "fg=green";
#[cfg(feature = "tmux_3_2")]
pub const PANE_ACTIVE_BORDER_STYLE_DEFAULT: &str =
    "#{?pane_in_mode,fg=yellow,#{?synchronize-panes,fg=red,fg=green}}";

/// tmux ^0.8 v1.9:
/// ```text
/// pane-active-border-bg default
/// ```
// default: 8
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_9")))]
pub const PANE_ACTIVE_BORDER_BG_DEFAULT: &str = "default";

/// tmux ^0.8 v1.9:
/// ```text
/// pane-active-border-fg green
/// ```
// 2
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_9")))]
pub const PANE_ACTIVE_BORDER_FG_DEFAULT: &str = "green";

/// tmux ^1.6:
/// ```text
/// pane-base-index 0
/// ```
#[cfg(feature = "tmux_1_6")]
pub const PANE_BASE_INDEX_DEFAULT: usize = 0;

/// tmux ^0.8 v1.9:
/// ```text
/// pane-border-bg default
/// ```
// default: 8
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_9")))]
pub const PANE_BORDER_BG_DEFAULT: &str = "default";

/// tmux ^0.8 v1.9:
/// ```text
/// pane-border-fg default
/// ```
// default: 8
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_9")))]
pub const PANE_BORDER_FG_DEFAULT: &str = "default";

/// tmux ^2.3:
/// ```text
/// pane-border-format #{?pane_active,#[reverse],}#{pane_index}#[default] \"#{pane_title}\"
/// ```
#[cfg(feature = "tmux_2_3")]
pub const PANE_BORDER_FORMAT_DEFAULT: &str =
    "#{?pane_active,#[reverse],}#{pane_index}#[default] \"#{pane_title}\"";

/// tmux ^2.3:
/// ```text
/// pane-border-status off
/// ```
#[cfg(feature = "tmux_2_3")]
pub const PANE_BORDER_STATUS_DEFAULT: PaneBorderStatus = PaneBorderStatus::Off;

/// tmux ^2.0:
/// ```text
/// pane-border-style default
/// ```
#[cfg(feature = "tmux_2_0")]
pub const PANE_BORDER_STYLE_DEFAULT: &str = "default";

/// tmux ^1.0 v3.0:
/// ```text
/// remain-on-exit off
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_3_0")))]
pub const REMAIN_ON_EXIT_DEFAULT: Switch = Switch::Off;

/// tmux ^1.2 v3.2:
/// ```text
/// synchronize-panes off
/// ```
#[cfg(all(feature = "tmux_1_2", not(feature = "tmux_3_2")))]
pub const SYNCHRONIZE_PANES_DEFAULT: Switch = Switch::Off;

/// tmux ^1.0 v2.2:
/// ```text
/// utf8 off
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_2")))]
pub const UTF8_DEFAULT: Switch = Switch::Off;

/// tmux ^2.1 v3.0:
/// ```text
/// window-active-style default
/// ```
#[cfg(all(feature = "tmux_2_1", not(feature = "tmux_3_0")))]
pub const WINDOW_ACTIVE_STYLE_DEFAULT: &str = "default";

/// tmux ^2.9 v3.1:
/// ```text
/// window-size smallest
/// ```
///
/// tmux ^3.1:
/// ```text
/// window-size latest
/// ```
#[cfg(all(feature = "tmux_2_9", not(feature = "tmux_3_1")))]
pub const WINDOW_SIZE_DEFAULT: WindowSize = WindowSize::Smallest;
#[cfg(feature = "tmux_3_1")]
pub const WINDOW_SIZE_DEFAULT: WindowSize = WindowSize::Latest;

/// tmux ^2.1 v3.0:
/// ```text
/// window-style default
/// ```
#[cfg(all(feature = "tmux_2_1", not(feature = "tmux_3_0")))]
pub const WINDOW_STYLE_DEFAULT: &str = "default";

/// tmux ^1.6 v1.9:
/// ```text
/// window-status-activity-attr reverse
/// ```
/// grid_attr_reverse
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_ACTIVITY_ATTR_DEFAULT: &str = "reverse";

/// tmux ^1.6 v1.9:
/// ```text
/// window-status-activity-bg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_ACTIVITY_BG_DEFAULT: &str = "default";

/// tmux ^1.6 v1.9:
/// ```text
/// window-status-activity-fg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_ACTIVITY_FG_DEFAULT: &str = "default";

/// tmux ^1.9:
/// ```text
/// window-status-activity-style reverse
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_ACTIVITY_STYLE_DEFAULT: &str = "reverse";

/// tmux ^1.0 v1.9:
/// ```text
/// window-status-attr none
/// ```
// 0
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_ATTR_DEFAULT: &str = "none";

/// tmux ^1.6 v1.9:
/// ```text
/// window-status-bell-attr reverse
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_BELL_ATTR_DEFAULT: &str = "reverse";

/// tmux ^1.6 v1.9:
/// ```text
/// window-status-bell-bg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_BELL_BG_DEFAULT: &str = "default";

/// tmux ^1.6 v1.9:
/// ```text
/// window-status-bell-fg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_BELL_FG_DEFAULT: &str = "default";

/// ```text
/// window-status-content-attr
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CONTENT_ATTR_DEFAULT: &str = "reverse";

/// ```text
/// window-status-content-bg
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CONTENT_BG_DEFAULT: &str = "default";

/// ```text
/// window-status-content-fg
/// ```
#[cfg(all(feature = "tmux_1_6", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CONTENT_FG_DEFAULT: &str = "default";

/// tmux ^1.9:
/// ```text
/// window-status-bell-style reverse
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_BELL_STYLE_DEFAULT: &str = "reverse";

/// tmux ^1.9 v2.0:
/// ```text
/// window-status-content-style reverse
/// ```
#[cfg(all(feature = "tmux_1_9", not(feature = "tmux_2_0")))]
pub const WINDOW_STATUS_CONTENT_STYLE_DEFAULT: &str = "reverse";

/// tmux ^1.0 v1.9:
/// ```text
/// window-status-bg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_BG_DEFAULT: &str = "default";

/// tmux ^1.0 v1.9:
/// ```text
/// window-status-current-attr none
/// ```
// 0
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CURRENT_ATTR_DEFAULT: &str = "none";

/// tmux ^1.0 v1.9:
/// ```text
/// window-status-current-bg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CURRENT_BG_DEFAULT: &str = "default";

/// tmux ^1.0 v1.9:
/// ```text
/// window-status-current-fg default
/// ```
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_CURRENT_FG_DEFAULT: &str = "default";

/// tmux ^1.3 v1.6:
/// ```text
/// window-status-alert-attr reverse
/// ```
#[cfg(all(feature = "tmux_1_3", not(feature = "tmux_1_6")))]
pub const WINDOW_STATUS_ALERT_ATTR_DEFAULT: &str = "reverse";

/// tmux ^1.3 v1.6:
/// ```text
/// window-status-alert-bg default
/// ```
#[cfg(all(feature = "tmux_1_3", not(feature = "tmux_1_6")))]
pub const WINDOW_STATUS_ALERT_BG_DEFAULT: &str = "default";

/// tmux ^1.3 v1.6:
/// ```text
/// window-status-alert-fg default
/// ```
#[cfg(all(feature = "tmux_1_3", not(feature = "tmux_1_6")))]
pub const WINDOW_STATUS_ALERT_FG_DEFAULT: &str = "default";

/// tmux ^2.1:
/// ```text
/// window-status-current-format #I:#W#{?window_flags,#{window_flags}, }
/// ```
///
/// tmux ^1.2 v2.1:
/// ```text
/// window-status-current-format #I:#W#F
/// ```
#[cfg(all(feature = "tmux_1_2", not(feature = "tmux_2_1")))]
pub const WINDOW_STATUS_CURRENT_FORMAT_DEFAULT: &str = "#I:#W#F";
#[cfg(feature = "tmux_2_1")]
pub const WINDOW_STATUS_CURRENT_FORMAT_DEFAULT: &str = "#I:#W#{?window_flags,#{window_flags}, }";

/// tmux ^1.9:
/// ```text
/// window-status-current-style default
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_CURRENT_STYLE_DEFAULT: &str = "default";

/// tmux ^1.0 v1.9:
/// ```text
/// window-status-fg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_FG_DEFAULT: &str = "default";

/// tmux ^2.1:
/// ```text
/// window-status-format #I:#W#{?window_flags,#{window_flags}, }
/// ```
///
///  tmux ^1.2 v2.1:
/// ```text
/// window-status-format #I:#W#F
/// ```
#[cfg(all(feature = "tmux_1_2", not(feature = "tmux_2_1")))]
pub const WINDOW_STATUS_FORMAT_DEFAULT: &str = "#I:#W#F";
#[cfg(feature = "tmux_2_1")]
pub const WINDOW_STATUS_FORMAT_DEFAULT: &str = "#I:#W#{?window_flags,#{window_flags}, }";

/// tmux ^1.8 v1.9:
/// ```text
/// window-status-last-attr none
/// ```
#[cfg(all(feature = "tmux_1_8", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_LAST_ATTR_DEFAULT: &str = "none";

/// tmux ^1.8 v1.9:
/// ```text
/// window-status-last-bg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_8", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_LAST_BG_DEFAULT: &str = "default";

/// tmux ^1.8 v1.9:
/// ```text
/// window-status-last-fg default
/// ```
// 8
#[cfg(all(feature = "tmux_1_8", not(feature = "tmux_1_9")))]
pub const WINDOW_STATUS_LAST_FG_DEFAULT: &str = "default";

/// tmux ^1.9:
/// ```text
/// window-status-last-style default
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_LAST_STYLE_DEFAULT: &str = "default";

/// tmux ^1.7:
/// ```text
/// window-status-separator   // empty space: " "
/// ```
// FIXME not quite the same string, but token separation problem in parsing
#[cfg(feature = "tmux_1_7")]
pub const WINDOW_STATUS_SEPARATOR_DEFAULT: &str = "\" \"";

/// tmux ^1.2 v1.6:
/// ```text
/// word-separators
/// ```
#[cfg(all(feature = "tmux_1_2", not(feature = "tmux_1_6")))]
pub const WORD_SEPARATORS_DEFAULT: &str = " -_@";

/// tmux ^1.9:
/// ```text
/// window-status-style default
/// ```
#[cfg(feature = "tmux_1_9")]
pub const WINDOW_STATUS_STYLE_DEFAULT: &str = "default";

/// tmux ^1.7:
/// ```text
/// wrap-search on
/// ```
#[cfg(feature = "tmux_1_7")]
pub const WRAP_SEARCH_DEFAULT: Switch = Switch::On;

/// tmux ^1.0:
/// ```text
/// xterm-keys on
/// ```
#[cfg(feature = "tmux_1_0")]
pub const XTERM_KEYS_DEFAULT: Switch = Switch::On;