-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux-server-2053.log
12732 lines (12732 loc) · 774 KB
/
tmux-server-2053.log
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
1658824545.031280 server started (2053): version 3.1c, socket /tmp/tmux-1000/default, protocol 8
1658824545.031298 on Linux 5.10.16.3-microsoft-standard-WSL2 #1 SMP Fri Apr 2 22:23:49 UTC 2021; libevent 2.1.12-stable (poll)
1658824545.031315 yylex_token: bind
1658824545.031339 yylex_token: -N
1658824545.031344 yylex_token: Send the prefix key
1658824545.031347 yylex_token: C-b
1658824545.031350 yylex_token: send-prefix
1658824545.031360 cmd_parse_build_commands: 0 bind
1658824545.031364 cmd_parse_build_commands: argv[0]=-N
1658824545.031367 cmd_parse_build_commands: argv[1]=Send the prefix key
1658824545.031370 cmd_parse_build_commands: argv[2]=C-b
1658824545.031373 cmd_parse_build_commands: argv[3]=send-prefix
1658824545.031378 cmd_parse: bind-key: argv[0]=bind
1658824545.031394 cmd_parse: bind-key: argv[1]=-N
1658824545.031398 cmd_parse: bind-key: argv[2]=Send the prefix key
1658824545.031400 cmd_parse: bind-key: argv[3]=C-b
1658824545.031403 cmd_parse: bind-key: argv[4]=send-prefix
1658824545.031416 cmd_parse_build_commands: bind-key -N "Send the prefix key" C-b send-prefix
1658824545.031432 cmdq_get_command: [bind-key/0x5646481ca920] group 2
1658824545.031436 cmdq_append <global>: [bind-key/0x5646481ca920]
1658824545.031440 yylex_token: bind
1658824545.031443 yylex_token: -N
1658824545.031446 yylex_token: Rotate through the panes
1658824545.031449 yylex_token: C-o
1658824545.031452 yylex_token: rotate-window
1658824545.031456 cmd_parse_build_commands: 0 bind
1658824545.031470 cmd_parse_build_commands: argv[0]=-N
1658824545.031474 cmd_parse_build_commands: argv[1]=Rotate through the panes
1658824545.031477 cmd_parse_build_commands: argv[2]=C-o
1658824545.031479 cmd_parse_build_commands: argv[3]=rotate-window
1658824545.031483 cmd_parse: bind-key: argv[0]=bind
1658824545.031485 cmd_parse: bind-key: argv[1]=-N
1658824545.031488 cmd_parse: bind-key: argv[2]=Rotate through the panes
1658824545.031490 cmd_parse: bind-key: argv[3]=C-o
1658824545.031493 cmd_parse: bind-key: argv[4]=rotate-window
1658824545.031500 cmd_parse_build_commands: bind-key -N "Rotate through the panes" C-o rotate-window
1658824545.031514 cmdq_get_command: [bind-key/0x5646481cb5f0] group 5
1658824545.031518 cmdq_append <global>: [bind-key/0x5646481cb5f0]
1658824545.031523 yylex_token: bind
1658824545.031526 yylex_token: -N
1658824545.031530 yylex_token: Suspend the current client
1658824545.031535 yylex_token: C-z
1658824545.031538 yylex_token: suspend-client
1658824545.031542 cmd_parse_build_commands: 0 bind
1658824545.031545 cmd_parse_build_commands: argv[0]=-N
1658824545.031547 cmd_parse_build_commands: argv[1]=Suspend the current client
1658824545.031550 cmd_parse_build_commands: argv[2]=C-z
1658824545.031553 cmd_parse_build_commands: argv[3]=suspend-client
1658824545.031558 cmd_parse: bind-key: argv[0]=bind
1658824545.031560 cmd_parse: bind-key: argv[1]=-N
1658824545.031563 cmd_parse: bind-key: argv[2]=Suspend the current client
1658824545.031566 cmd_parse: bind-key: argv[3]=C-z
1658824545.031568 cmd_parse: bind-key: argv[4]=suspend-client
1658824545.031576 cmd_parse_build_commands: bind-key -N "Suspend the current client" C-z suspend-client
1658824545.031590 cmdq_get_command: [bind-key/0x5646481cc110] group 8
1658824545.031594 cmdq_append <global>: [bind-key/0x5646481cc110]
1658824545.031599 yylex_token: bind
1658824545.031602 yylex_token: -N
1658824545.031605 yylex_token: Select next layout
1658824545.031608 yylex_token: Space
1658824545.031613 yylex_token: next-layout
1658824545.031617 cmd_parse_build_commands: 0 bind
1658824545.031620 cmd_parse_build_commands: argv[0]=-N
1658824545.031622 cmd_parse_build_commands: argv[1]=Select next layout
1658824545.031625 cmd_parse_build_commands: argv[2]=Space
1658824545.031628 cmd_parse_build_commands: argv[3]=next-layout
1658824545.031631 cmd_parse: bind-key: argv[0]=bind
1658824545.031634 cmd_parse: bind-key: argv[1]=-N
1658824545.031637 cmd_parse: bind-key: argv[2]=Select next layout
1658824545.031639 cmd_parse: bind-key: argv[3]=Space
1658824545.031642 cmd_parse: bind-key: argv[4]=next-layout
1658824545.031648 cmd_parse_build_commands: bind-key -N "Select next layout" Space next-layout
1658824545.031667 cmdq_get_command: [bind-key/0x5646481cc8d0] group 11
1658824545.031671 cmdq_append <global>: [bind-key/0x5646481cc8d0]
1658824545.031674 yylex_token: bind
1658824545.031677 yylex_token: -N
1658824545.031681 yylex_token: Break pane to a new window
1658824545.031683 yylex_token: !
1658824545.031686 yylex_token: break-pane
1658824545.031690 cmd_parse_build_commands: 0 bind
1658824545.031693 cmd_parse_build_commands: argv[0]=-N
1658824545.031696 cmd_parse_build_commands: argv[1]=Break pane to a new window
1658824545.031698 cmd_parse_build_commands: argv[2]=!
1658824545.031701 cmd_parse_build_commands: argv[3]=break-pane
1658824545.031704 cmd_parse: bind-key: argv[0]=bind
1658824545.031707 cmd_parse: bind-key: argv[1]=-N
1658824545.031710 cmd_parse: bind-key: argv[2]=Break pane to a new window
1658824545.031712 cmd_parse: bind-key: argv[3]=!
1658824545.031715 cmd_parse: bind-key: argv[4]=break-pane
1658824545.031721 cmd_parse_build_commands: bind-key -N "Break pane to a new window" ! break-pane
1658824545.031725 cmdq_get_command: [bind-key/0x5646481cd2c0] group 14
1658824545.031727 cmdq_append <global>: [bind-key/0x5646481cd2c0]
1658824545.031732 yylex_token: bind
1658824545.031735 yylex_token: -N
1658824545.031738 yylex_token: Split window vertically
1658824545.031741 yylex_token: "
1658824545.031744 yylex_token: split-window
1658824545.031786 cmd_parse_build_commands: 0 bind
1658824545.031791 cmd_parse_build_commands: argv[0]=-N
1658824545.031795 cmd_parse_build_commands: argv[1]=Split window vertically
1658824545.031797 cmd_parse_build_commands: argv[2]="
1658824545.031799 cmd_parse_build_commands: argv[3]=split-window
1658824545.031801 cmd_parse: bind-key: argv[0]=bind
1658824545.031805 cmd_parse: bind-key: argv[1]=-N
1658824545.031808 cmd_parse: bind-key: argv[2]=Split window vertically
1658824545.031810 cmd_parse: bind-key: argv[3]="
1658824545.031812 cmd_parse: bind-key: argv[4]=split-window
1658824545.031819 cmd_parse_build_commands: bind-key -N "Split window vertically" \\" split-window
1658824545.031822 cmdq_get_command: [bind-key/0x5646481cd7a0] group 17
1658824545.031825 cmdq_append <global>: [bind-key/0x5646481cd7a0]
1658824545.031828 yylex_token: bind
1658824545.031831 yylex_token: -N
1658824545.031834 yylex_token: List all paste buffers
1658824545.031836 yylex_token: #
1658824545.031838 yylex_token: list-buffers
1658824545.031842 cmd_parse_build_commands: 0 bind
1658824545.031844 cmd_parse_build_commands: argv[0]=-N
1658824545.031846 cmd_parse_build_commands: argv[1]=List all paste buffers
1658824545.031848 cmd_parse_build_commands: argv[2]=#
1658824545.031850 cmd_parse_build_commands: argv[3]=list-buffers
1658824545.031853 cmd_parse: bind-key: argv[0]=bind
1658824545.031855 cmd_parse: bind-key: argv[1]=-N
1658824545.031857 cmd_parse: bind-key: argv[2]=List all paste buffers
1658824545.031859 cmd_parse: bind-key: argv[3]=#
1658824545.031861 cmd_parse: bind-key: argv[4]=list-buffers
1658824545.031867 cmd_parse_build_commands: bind-key -N "List all paste buffers" \\# list-buffers
1658824545.031870 cmdq_get_command: [bind-key/0x5646481cded0] group 20
1658824545.031872 cmdq_append <global>: [bind-key/0x5646481cded0]
1658824545.031875 yylex_token: bind
1658824545.031878 yylex_token: -N
1658824545.031880 yylex_token: Rename current session
1658824545.031882 yylex_token: $
1658824545.031885 yylex_token: command-prompt
1658824545.031887 yylex_token: -I#S
1658824545.031890 yylex_token: rename-session -- '%%'
1658824545.031895 cmd_parse_build_commands: 0 bind
1658824545.031897 cmd_parse_build_commands: argv[0]=-N
1658824545.031899 cmd_parse_build_commands: argv[1]=Rename current session
1658824545.031901 cmd_parse_build_commands: argv[2]=$
1658824545.031904 cmd_parse_build_commands: argv[3]=command-prompt
1658824545.031906 cmd_parse_build_commands: argv[4]=-I#S
1658824545.031908 cmd_parse_build_commands: argv[5]=rename-session -- '%%'
1658824545.031910 cmd_parse: bind-key: argv[0]=bind
1658824545.031913 cmd_parse: bind-key: argv[1]=-N
1658824545.031920 cmd_parse: bind-key: argv[2]=Rename current session
1658824545.031922 cmd_parse: bind-key: argv[3]=$
1658824545.031924 cmd_parse: bind-key: argv[4]=command-prompt
1658824545.031926 cmd_parse: bind-key: argv[5]=-I#S
1658824545.031928 cmd_parse: bind-key: argv[6]=rename-session -- '%%'
1658824545.031936 cmd_parse_build_commands: bind-key -N "Rename current session" \\$ command-prompt "-I#S" "rename-session -- '%%'"
1658824545.031939 cmdq_get_command: [bind-key/0x5646481ce690] group 23
1658824545.031941 cmdq_append <global>: [bind-key/0x5646481ce690]
1658824545.031948 yylex_token: bind
1658824545.031961 yylex_token: -N
1658824545.031964 yylex_token: Split window horizontally
1658824545.031966 yylex_get_word: %
1658824545.031969 yylex_token: split-window
1658824545.031971 yylex_token: -h
1658824545.031974 cmd_parse_build_commands: 0 bind
1658824545.031977 cmd_parse_build_commands: argv[0]=-N
1658824545.031979 cmd_parse_build_commands: argv[1]=Split window horizontally
1658824545.031981 cmd_parse_build_commands: argv[2]=%
1658824545.031984 cmd_parse_build_commands: argv[3]=split-window
1658824545.031986 cmd_parse_build_commands: argv[4]=-h
1658824545.031989 cmd_parse: bind-key: argv[0]=bind
1658824545.031991 cmd_parse: bind-key: argv[1]=-N
1658824545.031994 cmd_parse: bind-key: argv[2]=Split window horizontally
1658824545.031996 cmd_parse: bind-key: argv[3]=%
1658824545.031998 cmd_parse: bind-key: argv[4]=split-window
1658824545.032000 cmd_parse: bind-key: argv[5]=-h
1658824545.032005 cmd_parse_build_commands: bind-key -N "Split window horizontally" % split-window -h
1658824545.032017 cmdq_get_command: [bind-key/0x5646481cec50] group 26
1658824545.032020 cmdq_append <global>: [bind-key/0x5646481cec50]
1658824545.032023 yylex_token: bind
1658824545.032025 yylex_token: -N
1658824545.032027 yylex_token: Kill current window
1658824545.032029 yylex_token: &
1658824545.032032 yylex_token: confirm-before
1658824545.032035 yylex_token: -pkill-window #W? (y/n)
1658824545.032037 yylex_token: kill-window
1658824545.032040 cmd_parse_build_commands: 0 bind
1658824545.032042 cmd_parse_build_commands: argv[0]=-N
1658824545.032044 cmd_parse_build_commands: argv[1]=Kill current window
1658824545.032046 cmd_parse_build_commands: argv[2]=&
1658824545.032048 cmd_parse_build_commands: argv[3]=confirm-before
1658824545.032050 cmd_parse_build_commands: argv[4]=-pkill-window #W? (y/n)
1658824545.032053 cmd_parse_build_commands: argv[5]=kill-window
1658824545.032055 cmd_parse: bind-key: argv[0]=bind
1658824545.032057 cmd_parse: bind-key: argv[1]=-N
1658824545.032059 cmd_parse: bind-key: argv[2]=Kill current window
1658824545.032061 cmd_parse: bind-key: argv[3]=&
1658824545.032063 cmd_parse: bind-key: argv[4]=confirm-before
1658824545.032065 cmd_parse: bind-key: argv[5]=-pkill-window #W? (y/n)
1658824545.032067 cmd_parse: bind-key: argv[6]=kill-window
1658824545.032074 cmd_parse_build_commands: bind-key -N "Kill current window" & confirm-before "-pkill-window #W? (y/n)" kill-window
1658824545.032086 cmdq_get_command: [bind-key/0x5646481cf610] group 29
1658824545.032089 cmdq_append <global>: [bind-key/0x5646481cf610]
1658824545.032093 yylex_token: bind
1658824545.032096 yylex_token: -N
1658824545.032099 yylex_token: Prompt for window index to select
1658824545.032101 yylex_token: '
1658824545.032103 yylex_token: command-prompt
1658824545.032105 yylex_token: -pindex
1658824545.032108 yylex_token: select-window -t ':%%'
1658824545.032111 cmd_parse_build_commands: 0 bind
1658824545.032113 cmd_parse_build_commands: argv[0]=-N
1658824545.032115 cmd_parse_build_commands: argv[1]=Prompt for window index to select
1658824545.032117 cmd_parse_build_commands: argv[2]='
1658824545.032120 cmd_parse_build_commands: argv[3]=command-prompt
1658824545.032122 cmd_parse_build_commands: argv[4]=-pindex
1658824545.032124 cmd_parse_build_commands: argv[5]=select-window -t ':%%'
1658824545.032126 cmd_parse: bind-key: argv[0]=bind
1658824545.032128 cmd_parse: bind-key: argv[1]=-N
1658824545.032130 cmd_parse: bind-key: argv[2]=Prompt for window index to select
1658824545.032135 cmd_parse: bind-key: argv[3]='
1658824545.032137 cmd_parse: bind-key: argv[4]=command-prompt
1658824545.032140 cmd_parse: bind-key: argv[5]=-pindex
1658824545.032142 cmd_parse: bind-key: argv[6]=select-window -t ':%%'
1658824545.032149 cmd_parse_build_commands: bind-key -N "Prompt for window index to select" \\' command-prompt -pindex "select-window -t ':%%'"
1658824545.032152 cmdq_get_command: [bind-key/0x5646481cfdf0] group 32
1658824545.032154 cmdq_append <global>: [bind-key/0x5646481cfdf0]
1658824545.032157 yylex_token: bind
1658824545.032159 yylex_token: -N
1658824545.032161 yylex_token: Switch to previous client
1658824545.032163 yylex_token: (
1658824545.032166 yylex_token: switch-client
1658824545.032168 yylex_token: -p
1658824545.032170 cmd_parse_build_commands: 0 bind
1658824545.032172 cmd_parse_build_commands: argv[0]=-N
1658824545.032175 cmd_parse_build_commands: argv[1]=Switch to previous client
1658824545.032177 cmd_parse_build_commands: argv[2]=(
1658824545.032179 cmd_parse_build_commands: argv[3]=switch-client
1658824545.032181 cmd_parse_build_commands: argv[4]=-p
1658824545.032183 cmd_parse: bind-key: argv[0]=bind
1658824545.032185 cmd_parse: bind-key: argv[1]=-N
1658824545.032187 cmd_parse: bind-key: argv[2]=Switch to previous client
1658824545.032189 cmd_parse: bind-key: argv[3]=(
1658824545.032191 cmd_parse: bind-key: argv[4]=switch-client
1658824545.032193 cmd_parse: bind-key: argv[5]=-p
1658824545.032198 cmd_parse_build_commands: bind-key -N "Switch to previous client" ( switch-client -p
1658824545.032201 cmdq_get_command: [bind-key/0x5646481d03e0] group 35
1658824545.032203 cmdq_append <global>: [bind-key/0x5646481d03e0]
1658824545.032206 yylex_token: bind
1658824545.032209 yylex_token: -N
1658824545.032212 yylex_token: Switch to next client
1658824545.032214 yylex_token: )
1658824545.032216 yylex_token: switch-client
1658824545.032218 yylex_token: -n
1658824545.032221 cmd_parse_build_commands: 0 bind
1658824545.032223 cmd_parse_build_commands: argv[0]=-N
1658824545.032225 cmd_parse_build_commands: argv[1]=Switch to next client
1658824545.032227 cmd_parse_build_commands: argv[2]=)
1658824545.032229 cmd_parse_build_commands: argv[3]=switch-client
1658824545.032231 cmd_parse_build_commands: argv[4]=-n
1658824545.032233 cmd_parse: bind-key: argv[0]=bind
1658824545.032235 cmd_parse: bind-key: argv[1]=-N
1658824545.032237 cmd_parse: bind-key: argv[2]=Switch to next client
1658824545.032239 cmd_parse: bind-key: argv[3]=)
1658824545.032242 cmd_parse: bind-key: argv[4]=switch-client
1658824545.032244 cmd_parse: bind-key: argv[5]=-n
1658824545.032249 cmd_parse_build_commands: bind-key -N "Switch to next client" ) switch-client -n
1658824545.032251 cmdq_get_command: [bind-key/0x5646481d0b10] group 38
1658824545.032253 cmdq_append <global>: [bind-key/0x5646481d0b10]
1658824545.032256 yylex_token: bind
1658824545.032258 yylex_token: -N
1658824545.032261 yylex_token: Rename current window
1658824545.032263 yylex_token: ,
1658824545.032265 yylex_token: command-prompt
1658824545.032267 yylex_token: -I#W
1658824545.032270 yylex_token: rename-window -- '%%'
1658824545.032272 cmd_parse_build_commands: 0 bind
1658824545.032275 cmd_parse_build_commands: argv[0]=-N
1658824545.032277 cmd_parse_build_commands: argv[1]=Rename current window
1658824545.032279 cmd_parse_build_commands: argv[2]=,
1658824545.032281 cmd_parse_build_commands: argv[3]=command-prompt
1658824545.032283 cmd_parse_build_commands: argv[4]=-I#W
1658824545.032285 cmd_parse_build_commands: argv[5]=rename-window -- '%%'
1658824545.032287 cmd_parse: bind-key: argv[0]=bind
1658824545.032289 cmd_parse: bind-key: argv[1]=-N
1658824545.032292 cmd_parse: bind-key: argv[2]=Rename current window
1658824545.032294 cmd_parse: bind-key: argv[3]=,
1658824545.032296 cmd_parse: bind-key: argv[4]=command-prompt
1658824545.032298 cmd_parse: bind-key: argv[5]=-I#W
1658824545.032300 cmd_parse: bind-key: argv[6]=rename-window -- '%%'
1658824545.032306 cmd_parse_build_commands: bind-key -N "Rename current window" , command-prompt "-I#W" "rename-window -- '%%'"
1658824545.032321 cmdq_get_command: [bind-key/0x5646481d1250] group 41
1658824545.032324 cmdq_append <global>: [bind-key/0x5646481d1250]
1658824545.032329 yylex_token: bind
1658824545.032331 yylex_token: -N
1658824545.032334 yylex_token: Delete the most recent paste buffer
1658824545.032336 yylex_token: -
1658824545.032339 yylex_token: delete-buffer
1658824545.032342 cmd_parse_build_commands: 0 bind
1658824545.032344 cmd_parse_build_commands: argv[0]=-N
1658824545.032346 cmd_parse_build_commands: argv[1]=Delete the most recent paste buffer
1658824545.032348 cmd_parse_build_commands: argv[2]=-
1658824545.032351 cmd_parse_build_commands: argv[3]=delete-buffer
1658824545.032353 cmd_parse: bind-key: argv[0]=bind
1658824545.032355 cmd_parse: bind-key: argv[1]=-N
1658824545.032357 cmd_parse: bind-key: argv[2]=Delete the most recent paste buffer
1658824545.032359 cmd_parse: bind-key: argv[3]=-
1658824545.032361 cmd_parse: bind-key: argv[4]=delete-buffer
1658824545.032366 cmd_parse_build_commands: bind-key -N "Delete the most recent paste buffer" - delete-buffer
1658824545.032369 cmdq_get_command: [bind-key/0x5646481d15e0] group 44
1658824545.032371 cmdq_append <global>: [bind-key/0x5646481d15e0]
1658824545.032374 yylex_token: bind
1658824545.032376 yylex_token: -N
1658824545.032378 yylex_token: Move the current window
1658824545.032381 yylex_token: .
1658824545.032383 yylex_token: command-prompt
1658824545.032385 yylex_token: move-window -t '%%'
1658824545.032388 cmd_parse_build_commands: 0 bind
1658824545.032390 cmd_parse_build_commands: argv[0]=-N
1658824545.032393 cmd_parse_build_commands: argv[1]=Move the current window
1658824545.032395 cmd_parse_build_commands: argv[2]=.
1658824545.032397 cmd_parse_build_commands: argv[3]=command-prompt
1658824545.032399 cmd_parse_build_commands: argv[4]=move-window -t '%%'
1658824545.032401 cmd_parse: bind-key: argv[0]=bind
1658824545.032406 cmd_parse: bind-key: argv[1]=-N
1658824545.032408 cmd_parse: bind-key: argv[2]=Move the current window
1658824545.032410 cmd_parse: bind-key: argv[3]=.
1658824545.032412 cmd_parse: bind-key: argv[4]=command-prompt
1658824545.032414 cmd_parse: bind-key: argv[5]=move-window -t '%%'
1658824545.032420 cmd_parse_build_commands: bind-key -N "Move the current window" . command-prompt "move-window -t '%%'"
1658824545.032422 cmdq_get_command: [bind-key/0x5646481d1db0] group 47
1658824545.032425 cmdq_append <global>: [bind-key/0x5646481d1db0]
1658824545.032427 yylex_token: bind
1658824545.032431 yylex_token: -N
1658824545.032433 yylex_token: Describe key binding
1658824545.032435 yylex_token: /
1658824545.032438 yylex_token: command-prompt
1658824545.032440 yylex_token: -kpkey
1658824545.032443 yylex_token: list-keys -1N "%%%"
1658824545.032445 cmd_parse_build_commands: 0 bind
1658824545.032448 cmd_parse_build_commands: argv[0]=-N
1658824545.032450 cmd_parse_build_commands: argv[1]=Describe key binding
1658824545.032452 cmd_parse_build_commands: argv[2]=/
1658824545.032454 cmd_parse_build_commands: argv[3]=command-prompt
1658824545.032456 cmd_parse_build_commands: argv[4]=-kpkey
1658824545.032458 cmd_parse_build_commands: argv[5]=list-keys -1N "%%%"
1658824545.032461 cmd_parse: bind-key: argv[0]=bind
1658824545.032463 cmd_parse: bind-key: argv[1]=-N
1658824545.032465 cmd_parse: bind-key: argv[2]=Describe key binding
1658824545.032467 cmd_parse: bind-key: argv[3]=/
1658824545.032469 cmd_parse: bind-key: argv[4]=command-prompt
1658824545.032471 cmd_parse: bind-key: argv[5]=-kpkey
1658824545.032473 cmd_parse: bind-key: argv[6]=list-keys -1N "%%%"
1658824545.032479 cmd_parse_build_commands: bind-key -N "Describe key binding" / command-prompt -kpkey "list-keys -1N \\"%%%\\""
1658824545.032482 cmdq_get_command: [bind-key/0x5646481d2430] group 50
1658824545.032484 cmdq_append <global>: [bind-key/0x5646481d2430]
1658824545.032487 yylex_token: bind
1658824545.032491 yylex_token: -N
1658824545.032494 yylex_token: Select window 0
1658824545.032496 yylex_token: 0
1658824545.032498 yylex_token: select-window
1658824545.032500 yylex_token: -t:=0
1658824545.032503 cmd_parse_build_commands: 0 bind
1658824545.032507 cmd_parse_build_commands: argv[0]=-N
1658824545.032509 cmd_parse_build_commands: argv[1]=Select window 0
1658824545.032511 cmd_parse_build_commands: argv[2]=0
1658824545.032513 cmd_parse_build_commands: argv[3]=select-window
1658824545.032515 cmd_parse_build_commands: argv[4]=-t:=0
1658824545.032518 cmd_parse: bind-key: argv[0]=bind
1658824545.032520 cmd_parse: bind-key: argv[1]=-N
1658824545.032522 cmd_parse: bind-key: argv[2]=Select window 0
1658824545.032524 cmd_parse: bind-key: argv[3]=0
1658824545.032541 cmd_parse: bind-key: argv[4]=select-window
1658824545.032544 cmd_parse: bind-key: argv[5]=-t:=0
1658824545.032550 cmd_parse_build_commands: bind-key -N "Select window 0" 0 select-window -t:=0
1658824545.032553 cmdq_get_command: [bind-key/0x5646481d2970] group 53
1658824545.032555 cmdq_append <global>: [bind-key/0x5646481d2970]
1658824545.032558 yylex_token: bind
1658824545.032560 yylex_token: -N
1658824545.032562 yylex_token: Select window 1
1658824545.032564 yylex_token: 1
1658824545.032567 yylex_token: select-window
1658824545.032569 yylex_token: -t:=1
1658824545.032571 cmd_parse_build_commands: 0 bind
1658824545.032574 cmd_parse_build_commands: argv[0]=-N
1658824545.032576 cmd_parse_build_commands: argv[1]=Select window 1
1658824545.032578 cmd_parse_build_commands: argv[2]=1
1658824545.032580 cmd_parse_build_commands: argv[3]=select-window
1658824545.032582 cmd_parse_build_commands: argv[4]=-t:=1
1658824545.032584 cmd_parse: bind-key: argv[0]=bind
1658824545.032586 cmd_parse: bind-key: argv[1]=-N
1658824545.032588 cmd_parse: bind-key: argv[2]=Select window 1
1658824545.032590 cmd_parse: bind-key: argv[3]=1
1658824545.032592 cmd_parse: bind-key: argv[4]=select-window
1658824545.032594 cmd_parse: bind-key: argv[5]=-t:=1
1658824545.032599 cmd_parse_build_commands: bind-key -N "Select window 1" 1 select-window -t:=1
1658824545.032604 cmdq_get_command: [bind-key/0x5646481d2f20] group 56
1658824545.032606 cmdq_append <global>: [bind-key/0x5646481d2f20]
1658824545.032608 yylex_token: bind
1658824545.032611 yylex_token: -N
1658824545.032613 yylex_token: Select window 2
1658824545.032615 yylex_token: 2
1658824545.032617 yylex_token: select-window
1658824545.032619 yylex_token: -t:=2
1658824545.032622 cmd_parse_build_commands: 0 bind
1658824545.032626 cmd_parse_build_commands: argv[0]=-N
1658824545.032628 cmd_parse_build_commands: argv[1]=Select window 2
1658824545.032630 cmd_parse_build_commands: argv[2]=2
1658824545.032632 cmd_parse_build_commands: argv[3]=select-window
1658824545.032634 cmd_parse_build_commands: argv[4]=-t:=2
1658824545.032636 cmd_parse: bind-key: argv[0]=bind
1658824545.032638 cmd_parse: bind-key: argv[1]=-N
1658824545.032640 cmd_parse: bind-key: argv[2]=Select window 2
1658824545.032642 cmd_parse: bind-key: argv[3]=2
1658824545.032644 cmd_parse: bind-key: argv[4]=select-window
1658824545.032646 cmd_parse: bind-key: argv[5]=-t:=2
1658824545.032651 cmd_parse_build_commands: bind-key -N "Select window 2" 2 select-window -t:=2
1658824545.032653 cmdq_get_command: [bind-key/0x5646481d3430] group 59
1658824545.032656 cmdq_append <global>: [bind-key/0x5646481d3430]
1658824545.032659 yylex_token: bind
1658824545.032663 yylex_token: -N
1658824545.032665 yylex_token: Select window 3
1658824545.032667 yylex_token: 3
1658824545.032669 yylex_token: select-window
1658824545.032671 yylex_token: -t:=3
1658824545.032674 cmd_parse_build_commands: 0 bind
1658824545.032676 cmd_parse_build_commands: argv[0]=-N
1658824545.032678 cmd_parse_build_commands: argv[1]=Select window 3
1658824545.032680 cmd_parse_build_commands: argv[2]=3
1658824545.032682 cmd_parse_build_commands: argv[3]=select-window
1658824545.032684 cmd_parse_build_commands: argv[4]=-t:=3
1658824545.032686 cmd_parse: bind-key: argv[0]=bind
1658824545.032688 cmd_parse: bind-key: argv[1]=-N
1658824545.032690 cmd_parse: bind-key: argv[2]=Select window 3
1658824545.032693 cmd_parse: bind-key: argv[3]=3
1658824545.032695 cmd_parse: bind-key: argv[4]=select-window
1658824545.032697 cmd_parse: bind-key: argv[5]=-t:=3
1658824545.032713 cmd_parse_build_commands: bind-key -N "Select window 3" 3 select-window -t:=3
1658824545.032717 cmdq_get_command: [bind-key/0x5646481d3970] group 62
1658824545.032719 cmdq_append <global>: [bind-key/0x5646481d3970]
1658824545.032722 yylex_token: bind
1658824545.032724 yylex_token: -N
1658824545.032726 yylex_token: Select window 4
1658824545.032728 yylex_token: 4
1658824545.032730 yylex_token: select-window
1658824545.032733 yylex_token: -t:=4
1658824545.032735 cmd_parse_build_commands: 0 bind
1658824545.032737 cmd_parse_build_commands: argv[0]=-N
1658824545.032740 cmd_parse_build_commands: argv[1]=Select window 4
1658824545.032742 cmd_parse_build_commands: argv[2]=4
1658824545.032744 cmd_parse_build_commands: argv[3]=select-window
1658824545.032753 cmd_parse_build_commands: argv[4]=-t:=4
1658824545.032756 cmd_parse: bind-key: argv[0]=bind
1658824545.032758 cmd_parse: bind-key: argv[1]=-N
1658824545.032760 cmd_parse: bind-key: argv[2]=Select window 4
1658824545.032762 cmd_parse: bind-key: argv[3]=4
1658824545.032764 cmd_parse: bind-key: argv[4]=select-window
1658824545.032766 cmd_parse: bind-key: argv[5]=-t:=4
1658824545.032773 cmd_parse_build_commands: bind-key -N "Select window 4" 4 select-window -t:=4
1658824545.032775 cmdq_get_command: [bind-key/0x5646481d3fd0] group 65
1658824545.032777 cmdq_append <global>: [bind-key/0x5646481d3fd0]
1658824545.032780 yylex_token: bind
1658824545.032782 yylex_token: -N
1658824545.032784 yylex_token: Select window 5
1658824545.032786 yylex_token: 5
1658824545.032789 yylex_token: select-window
1658824545.032792 yylex_token: -t:=5
1658824545.032795 cmd_parse_build_commands: 0 bind
1658824545.032797 cmd_parse_build_commands: argv[0]=-N
1658824545.032799 cmd_parse_build_commands: argv[1]=Select window 5
1658824545.032801 cmd_parse_build_commands: argv[2]=5
1658824545.032804 cmd_parse_build_commands: argv[3]=select-window
1658824545.032806 cmd_parse_build_commands: argv[4]=-t:=5
1658824545.032808 cmd_parse: bind-key: argv[0]=bind
1658824545.032810 cmd_parse: bind-key: argv[1]=-N
1658824545.032812 cmd_parse: bind-key: argv[2]=Select window 5
1658824545.032814 cmd_parse: bind-key: argv[3]=5
1658824545.032816 cmd_parse: bind-key: argv[4]=select-window
1658824545.032818 cmd_parse: bind-key: argv[5]=-t:=5
1658824545.032822 cmd_parse_build_commands: bind-key -N "Select window 5" 5 select-window -t:=5
1658824545.032825 cmdq_get_command: [bind-key/0x5646481d4460] group 68
1658824545.032827 cmdq_append <global>: [bind-key/0x5646481d4460]
1658824545.032831 yylex_token: bind
1658824545.032834 yylex_token: -N
1658824545.032836 yylex_token: Select window 6
1658824545.032838 yylex_token: 6
1658824545.032840 yylex_token: select-window
1658824545.032843 yylex_token: -t:=6
1658824545.032847 cmd_parse_build_commands: 0 bind
1658824545.032849 cmd_parse_build_commands: argv[0]=-N
1658824545.032851 cmd_parse_build_commands: argv[1]=Select window 6
1658824545.032853 cmd_parse_build_commands: argv[2]=6
1658824545.032855 cmd_parse_build_commands: argv[3]=select-window
1658824545.032857 cmd_parse_build_commands: argv[4]=-t:=6
1658824545.032859 cmd_parse: bind-key: argv[0]=bind
1658824545.032861 cmd_parse: bind-key: argv[1]=-N
1658824545.032863 cmd_parse: bind-key: argv[2]=Select window 6
1658824545.032865 cmd_parse: bind-key: argv[3]=6
1658824545.032867 cmd_parse: bind-key: argv[4]=select-window
1658824545.032869 cmd_parse: bind-key: argv[5]=-t:=6
1658824545.032874 cmd_parse_build_commands: bind-key -N "Select window 6" 6 select-window -t:=6
1658824545.032877 cmdq_get_command: [bind-key/0x5646481d48f0] group 71
1658824545.032879 cmdq_append <global>: [bind-key/0x5646481d48f0]
1658824545.032884 yylex_token: bind
1658824545.032886 yylex_token: -N
1658824545.032888 yylex_token: Select window 7
1658824545.032890 yylex_token: 7
1658824545.032892 yylex_token: select-window
1658824545.032894 yylex_token: -t:=7
1658824545.032897 cmd_parse_build_commands: 0 bind
1658824545.032899 cmd_parse_build_commands: argv[0]=-N
1658824545.032901 cmd_parse_build_commands: argv[1]=Select window 7
1658824545.032905 cmd_parse_build_commands: argv[2]=7
1658824545.032909 cmd_parse_build_commands: argv[3]=select-window
1658824545.032911 cmd_parse_build_commands: argv[4]=-t:=7
1658824545.032913 cmd_parse: bind-key: argv[0]=bind
1658824545.032915 cmd_parse: bind-key: argv[1]=-N
1658824545.032917 cmd_parse: bind-key: argv[2]=Select window 7
1658824545.032919 cmd_parse: bind-key: argv[3]=7
1658824545.032921 cmd_parse: bind-key: argv[4]=select-window
1658824545.032923 cmd_parse: bind-key: argv[5]=-t:=7
1658824545.032928 cmd_parse_build_commands: bind-key -N "Select window 7" 7 select-window -t:=7
1658824545.032930 cmdq_get_command: [bind-key/0x5646481d4d80] group 74
1658824545.032933 cmdq_append <global>: [bind-key/0x5646481d4d80]
1658824545.032935 yylex_token: bind
1658824545.032937 yylex_token: -N
1658824545.032939 yylex_token: Select window 8
1658824545.032941 yylex_token: 8
1658824545.032944 yylex_token: select-window
1658824545.032946 yylex_token: -t:=8
1658824545.032948 cmd_parse_build_commands: 0 bind
1658824545.032950 cmd_parse_build_commands: argv[0]=-N
1658824545.032952 cmd_parse_build_commands: argv[1]=Select window 8
1658824545.032954 cmd_parse_build_commands: argv[2]=8
1658824545.032957 cmd_parse_build_commands: argv[3]=select-window
1658824545.032959 cmd_parse_build_commands: argv[4]=-t:=8
1658824545.032961 cmd_parse: bind-key: argv[0]=bind
1658824545.032963 cmd_parse: bind-key: argv[1]=-N
1658824545.032965 cmd_parse: bind-key: argv[2]=Select window 8
1658824545.032967 cmd_parse: bind-key: argv[3]=8
1658824545.032969 cmd_parse: bind-key: argv[4]=select-window
1658824545.032971 cmd_parse: bind-key: argv[5]=-t:=8
1658824545.032975 cmd_parse_build_commands: bind-key -N "Select window 8" 8 select-window -t:=8
1658824545.032980 cmdq_get_command: [bind-key/0x5646481d5210] group 77
1658824545.032982 cmdq_append <global>: [bind-key/0x5646481d5210]
1658824545.032985 yylex_token: bind
1658824545.032988 yylex_token: -N
1658824545.032990 yylex_token: Select window 9
1658824545.032992 yylex_token: 9
1658824545.032994 yylex_token: select-window
1658824545.032996 yylex_token: -t:=9
1658824545.032999 cmd_parse_build_commands: 0 bind
1658824545.033001 cmd_parse_build_commands: argv[0]=-N
1658824545.033003 cmd_parse_build_commands: argv[1]=Select window 9
1658824545.033005 cmd_parse_build_commands: argv[2]=9
1658824545.033007 cmd_parse_build_commands: argv[3]=select-window
1658824545.033009 cmd_parse_build_commands: argv[4]=-t:=9
1658824545.033011 cmd_parse: bind-key: argv[0]=bind
1658824545.033013 cmd_parse: bind-key: argv[1]=-N
1658824545.033015 cmd_parse: bind-key: argv[2]=Select window 9
1658824545.033017 cmd_parse: bind-key: argv[3]=9
1658824545.033019 cmd_parse: bind-key: argv[4]=select-window
1658824545.033021 cmd_parse: bind-key: argv[5]=-t:=9
1658824545.033026 cmd_parse_build_commands: bind-key -N "Select window 9" 9 select-window -t:=9
1658824545.033038 cmdq_get_command: [bind-key/0x5646481d5790] group 80
1658824545.033041 cmdq_append <global>: [bind-key/0x5646481d5790]
1658824545.033044 yylex_token: bind
1658824545.033046 yylex_token: -N
1658824545.033049 yylex_token: Prompt for a command
1658824545.033051 yylex_token: :
1658824545.033053 yylex_token: command-prompt
1658824545.033056 cmd_parse_build_commands: 0 bind
1658824545.033058 cmd_parse_build_commands: argv[0]=-N
1658824545.033060 cmd_parse_build_commands: argv[1]=Prompt for a command
1658824545.033062 cmd_parse_build_commands: argv[2]=:
1658824545.033064 cmd_parse_build_commands: argv[3]=command-prompt
1658824545.033067 cmd_parse: bind-key: argv[0]=bind
1658824545.033069 cmd_parse: bind-key: argv[1]=-N
1658824545.033071 cmd_parse: bind-key: argv[2]=Prompt for a command
1658824545.033073 cmd_parse: bind-key: argv[3]=:
1658824545.033075 cmd_parse: bind-key: argv[4]=command-prompt
1658824545.033080 cmd_parse_build_commands: bind-key -N "Prompt for a command" : command-prompt
1658824545.033083 cmdq_get_command: [bind-key/0x5646481d5ac0] group 83
1658824545.033085 cmdq_append <global>: [bind-key/0x5646481d5ac0]
1658824545.033088 yylex_token: bind
1658824545.033090 yylex_token: -N
1658824545.033095 yylex_token: Move to the previously active pane
1658824545.033097 yylex_token: ;
1658824545.033099 yylex_token: last-pane
1658824545.033102 cmd_parse_build_commands: 0 bind
1658824545.033104 cmd_parse_build_commands: argv[0]=-N
1658824545.033107 cmd_parse_build_commands: argv[1]=Move to the previously active pane
1658824545.033109 cmd_parse_build_commands: argv[2]=;
1658824545.033111 cmd_parse_build_commands: argv[3]=last-pane
1658824545.033113 cmd_parse: bind-key: argv[0]=bind
1658824545.033115 cmd_parse: bind-key: argv[1]=-N
1658824545.033117 cmd_parse: bind-key: argv[2]=Move to the previously active pane
1658824545.033121 cmd_parse: bind-key: argv[3]=;
1658824545.033123 cmd_parse: bind-key: argv[4]=last-pane
1658824545.033128 cmd_parse_build_commands: bind-key -N "Move to the previously active pane" \\; last-pane
1658824545.033131 cmdq_get_command: [bind-key/0x5646481d5fa0] group 86
1658824545.033133 cmdq_append <global>: [bind-key/0x5646481d5fa0]
1658824545.033135 yylex_token: bind
1658824545.033137 yylex_token: -N
1658824545.033140 yylex_token: Choose a paste buffer from a list
1658824545.033142 yylex_token: =
1658824545.033144 yylex_token: choose-buffer
1658824545.033146 yylex_token: -Z
1658824545.033149 cmd_parse_build_commands: 0 bind
1658824545.033151 cmd_parse_build_commands: argv[0]=-N
1658824545.033153 cmd_parse_build_commands: argv[1]=Choose a paste buffer from a list
1658824545.033155 cmd_parse_build_commands: argv[2]==
1658824545.033158 cmd_parse_build_commands: argv[3]=choose-buffer
1658824545.033160 cmd_parse_build_commands: argv[4]=-Z
1658824545.033162 cmd_parse: bind-key: argv[0]=bind
1658824545.033164 cmd_parse: bind-key: argv[1]=-N
1658824545.033166 cmd_parse: bind-key: argv[2]=Choose a paste buffer from a list
1658824545.033168 cmd_parse: bind-key: argv[3]==
1658824545.033170 cmd_parse: bind-key: argv[4]=choose-buffer
1658824545.033172 cmd_parse: bind-key: argv[5]=-Z
1658824545.033177 cmd_parse_build_commands: bind-key -N "Choose a paste buffer from a list" = choose-buffer -Z
1658824545.033180 cmdq_get_command: [bind-key/0x5646481d67f0] group 89
1658824545.033182 cmdq_append <global>: [bind-key/0x5646481d67f0]
1658824545.033185 yylex_token: bind
1658824545.033188 yylex_token: -N
1658824545.033191 yylex_token: List key bindings
1658824545.033193 yylex_token: ?
1658824545.033195 yylex_token: list-keys
1658824545.033197 yylex_token: -N
1658824545.033199 cmd_parse_build_commands: 0 bind
1658824545.033201 cmd_parse_build_commands: argv[0]=-N
1658824545.033204 cmd_parse_build_commands: argv[1]=List key bindings
1658824545.033206 cmd_parse_build_commands: argv[2]=?
1658824545.033208 cmd_parse_build_commands: argv[3]=list-keys
1658824545.033210 cmd_parse_build_commands: argv[4]=-N
1658824545.033213 cmd_parse: bind-key: argv[0]=bind
1658824545.033215 cmd_parse: bind-key: argv[1]=-N
1658824545.033217 cmd_parse: bind-key: argv[2]=List key bindings
1658824545.033219 cmd_parse: bind-key: argv[3]=?
1658824545.033221 cmd_parse: bind-key: argv[4]=list-keys
1658824545.033223 cmd_parse: bind-key: argv[5]=-N
1658824545.033227 cmd_parse_build_commands: bind-key -N "List key bindings" ? list-keys -N
1658824545.033239 cmdq_get_command: [bind-key/0x5646481d7060] group 92
1658824545.033242 cmdq_append <global>: [bind-key/0x5646481d7060]
1658824545.033245 yylex_token: bind
1658824545.033247 yylex_token: -N
1658824545.033250 yylex_token: Choose a client from a list
1658824545.033252 yylex_token: D
1658824545.033254 yylex_token: choose-client
1658824545.033256 yylex_token: -Z
1658824545.033259 cmd_parse_build_commands: 0 bind
1658824545.033261 cmd_parse_build_commands: argv[0]=-N
1658824545.033264 cmd_parse_build_commands: argv[1]=Choose a client from a list
1658824545.033266 cmd_parse_build_commands: argv[2]=D
1658824545.033268 cmd_parse_build_commands: argv[3]=choose-client
1658824545.033270 cmd_parse_build_commands: argv[4]=-Z
1658824545.033272 cmd_parse: bind-key: argv[0]=bind
1658824545.033274 cmd_parse: bind-key: argv[1]=-N
1658824545.033276 cmd_parse: bind-key: argv[2]=Choose a client from a list
1658824545.033282 cmd_parse: bind-key: argv[3]=D
1658824545.033284 cmd_parse: bind-key: argv[4]=choose-client
1658824545.033286 cmd_parse: bind-key: argv[5]=-Z
1658824545.033291 cmd_parse_build_commands: bind-key -N "Choose a client from a list" D choose-client -Z
1658824545.033302 cmdq_get_command: [bind-key/0x5646481d7580] group 95
1658824545.033305 cmdq_append <global>: [bind-key/0x5646481d7580]
1658824545.033309 yylex_token: bind
1658824545.033312 yylex_token: -N
1658824545.033315 yylex_token: Spread panes out evenly
1658824545.033316 yylex_token: E
1658824545.033319 yylex_token: select-layout
1658824545.033321 yylex_token: -E
1658824545.033323 cmd_parse_build_commands: 0 bind
1658824545.033326 cmd_parse_build_commands: argv[0]=-N
1658824545.033328 cmd_parse_build_commands: argv[1]=Spread panes out evenly
1658824545.033330 cmd_parse_build_commands: argv[2]=E
1658824545.033332 cmd_parse_build_commands: argv[3]=select-layout
1658824545.033334 cmd_parse_build_commands: argv[4]=-E
1658824545.033336 cmd_parse: bind-key: argv[0]=bind
1658824545.033338 cmd_parse: bind-key: argv[1]=-N
1658824545.033341 cmd_parse: bind-key: argv[2]=Spread panes out evenly
1658824545.033343 cmd_parse: bind-key: argv[3]=E
1658824545.033345 cmd_parse: bind-key: argv[4]=select-layout
1658824545.033347 cmd_parse: bind-key: argv[5]=-E
1658824545.033352 cmd_parse_build_commands: bind-key -N "Spread panes out evenly" E select-layout -E
1658824545.033354 cmdq_get_command: [bind-key/0x5646481d7cd0] group 98
1658824545.033356 cmdq_append <global>: [bind-key/0x5646481d7cd0]
1658824545.033361 yylex_token: bind
1658824545.033363 yylex_token: -N
1658824545.033366 yylex_token: Switch to the last client
1658824545.033368 yylex_token: L
1658824545.033370 yylex_token: switch-client
1658824545.033372 yylex_token: -l
1658824545.033375 cmd_parse_build_commands: 0 bind
1658824545.033377 cmd_parse_build_commands: argv[0]=-N
1658824545.033379 cmd_parse_build_commands: argv[1]=Switch to the last client
1658824545.033381 cmd_parse_build_commands: argv[2]=L
1658824545.033383 cmd_parse_build_commands: argv[3]=switch-client
1658824545.033385 cmd_parse_build_commands: argv[4]=-l
1658824545.033388 cmd_parse: bind-key: argv[0]=bind
1658824545.033390 cmd_parse: bind-key: argv[1]=-N
1658824545.033392 cmd_parse: bind-key: argv[2]=Switch to the last client
1658824545.033394 cmd_parse: bind-key: argv[3]=L
1658824545.033396 cmd_parse: bind-key: argv[4]=switch-client
1658824545.033398 cmd_parse: bind-key: argv[5]=-l
1658824545.033403 cmd_parse_build_commands: bind-key -N "Switch to the last client" L switch-client -l
1658824545.033414 cmdq_get_command: [bind-key/0x5646481d82f0] group 101
1658824545.033417 cmdq_append <global>: [bind-key/0x5646481d82f0]
1658824545.033421 yylex_token: bind
1658824545.033424 yylex_token: -N
1658824545.033427 yylex_token: Clear the marked pane
1658824545.033428 yylex_token: M
1658824545.033431 yylex_token: select-pane
1658824545.033433 yylex_token: -M
1658824545.033436 cmd_parse_build_commands: 0 bind
1658824545.033438 cmd_parse_build_commands: argv[0]=-N
1658824545.033440 cmd_parse_build_commands: argv[1]=Clear the marked pane
1658824545.033442 cmd_parse_build_commands: argv[2]=M
1658824545.033445 cmd_parse_build_commands: argv[3]=select-pane
1658824545.033447 cmd_parse_build_commands: argv[4]=-M
1658824545.033449 cmd_parse: bind-key: argv[0]=bind
1658824545.033451 cmd_parse: bind-key: argv[1]=-N
1658824545.033453 cmd_parse: bind-key: argv[2]=Clear the marked pane
1658824545.033455 cmd_parse: bind-key: argv[3]=M
1658824545.033457 cmd_parse: bind-key: argv[4]=select-pane
1658824545.033459 cmd_parse: bind-key: argv[5]=-M
1658824545.033464 cmd_parse_build_commands: bind-key -N "Clear the marked pane" M select-pane -M
1658824545.033467 cmdq_get_command: [bind-key/0x5646481d88d0] group 104
1658824545.033469 cmdq_append <global>: [bind-key/0x5646481d88d0]
1658824545.033473 yylex_token: bind
1658824545.033476 yylex_token: -N
1658824545.033478 yylex_token: Enter copy mode
1658824545.033480 yylex_token: [
1658824545.033482 yylex_token: copy-mode
1658824545.033485 cmd_parse_build_commands: 0 bind
1658824545.033489 cmd_parse_build_commands: argv[0]=-N
1658824545.033492 cmd_parse_build_commands: argv[1]=Enter copy mode
1658824545.033494 cmd_parse_build_commands: argv[2]=[
1658824545.033496 cmd_parse_build_commands: argv[3]=copy-mode
1658824545.033500 cmd_parse: bind-key: argv[0]=bind
1658824545.033502 cmd_parse: bind-key: argv[1]=-N
1658824545.033504 cmd_parse: bind-key: argv[2]=Enter copy mode
1658824545.033506 cmd_parse: bind-key: argv[3]=[
1658824545.033508 cmd_parse: bind-key: argv[4]=copy-mode
1658824545.033513 cmd_parse_build_commands: bind-key -N "Enter copy mode" [ copy-mode
1658824545.033515 cmdq_get_command: [bind-key/0x5646481d8b30] group 107
1658824545.033517 cmdq_append <global>: [bind-key/0x5646481d8b30]
1658824545.033520 yylex_token: bind
1658824545.033522 yylex_token: -N
1658824545.033525 yylex_token: Paste the most recent paste buffer
1658824545.033528 yylex_token: ]
1658824545.033531 yylex_token: paste-buffer
1658824545.033534 cmd_parse_build_commands: 0 bind
1658824545.033536 cmd_parse_build_commands: argv[0]=-N
1658824545.033538 cmd_parse_build_commands: argv[1]=Paste the most recent paste buffer
1658824545.033540 cmd_parse_build_commands: argv[2]=]
1658824545.033542 cmd_parse_build_commands: argv[3]=paste-buffer
1658824545.033545 cmd_parse: bind-key: argv[0]=bind
1658824545.033547 cmd_parse: bind-key: argv[1]=-N
1658824545.033549 cmd_parse: bind-key: argv[2]=Paste the most recent paste buffer
1658824545.033551 cmd_parse: bind-key: argv[3]=]
1658824545.033553 cmd_parse: bind-key: argv[4]=paste-buffer
1658824545.033558 cmd_parse_build_commands: bind-key -N "Paste the most recent paste buffer" ] paste-buffer
1658824545.033562 cmdq_get_command: [bind-key/0x5646481d9000] group 110
1658824545.033564 cmdq_append <global>: [bind-key/0x5646481d9000]
1658824545.033567 yylex_token: bind
1658824545.033569 yylex_token: -N
1658824545.033571 yylex_token: Create a new window
1658824545.033573 yylex_token: c
1658824545.033576 yylex_token: new-window
1658824545.033578 cmd_parse_build_commands: 0 bind
1658824545.033580 cmd_parse_build_commands: argv[0]=-N
1658824545.033583 cmd_parse_build_commands: argv[1]=Create a new window
1658824545.033585 cmd_parse_build_commands: argv[2]=c
1658824545.033587 cmd_parse_build_commands: argv[3]=new-window
1658824545.033589 cmd_parse: bind-key: argv[0]=bind
1658824545.033591 cmd_parse: bind-key: argv[1]=-N
1658824545.033594 cmd_parse: bind-key: argv[2]=Create a new window
1658824545.033595 cmd_parse: bind-key: argv[3]=c
1658824545.033597 cmd_parse: bind-key: argv[4]=new-window
1658824545.033602 cmd_parse_build_commands: bind-key -N "Create a new window" c new-window
1658824545.033605 cmdq_get_command: [bind-key/0x5646481d9670] group 113
1658824545.033607 cmdq_append <global>: [bind-key/0x5646481d9670]
1658824545.033610 yylex_token: bind
1658824545.033613 yylex_token: -N
1658824545.033615 yylex_token: Detach the current client
1658824545.033617 yylex_token: d
1658824545.033620 yylex_token: detach-client
1658824545.033622 cmd_parse_build_commands: 0 bind
1658824545.033625 cmd_parse_build_commands: argv[0]=-N
1658824545.033627 cmd_parse_build_commands: argv[1]=Detach the current client
1658824545.033629 cmd_parse_build_commands: argv[2]=d
1658824545.033631 cmd_parse_build_commands: argv[3]=detach-client
1658824545.033633 cmd_parse: bind-key: argv[0]=bind
1658824545.033635 cmd_parse: bind-key: argv[1]=-N
1658824545.033637 cmd_parse: bind-key: argv[2]=Detach the current client
1658824545.033640 cmd_parse: bind-key: argv[3]=d
1658824545.033642 cmd_parse: bind-key: argv[4]=detach-client
1658824545.033646 cmd_parse_build_commands: bind-key -N "Detach the current client" d detach-client
1658824545.033650 cmdq_get_command: [bind-key/0x5646481d99a0] group 116
1658824545.033652 cmdq_append <global>: [bind-key/0x5646481d99a0]
1658824545.033654 yylex_token: bind
1658824545.033656 yylex_token: -N
1658824545.033659 yylex_token: Search for a pane
1658824545.033661 yylex_token: f
1658824545.033663 yylex_token: command-prompt
1658824545.033666 yylex_token: find-window -Z -- '%%'
1658824545.033680 cmd_parse_build_commands: 0 bind
1658824545.033683 cmd_parse_build_commands: argv[0]=-N
1658824545.033685 cmd_parse_build_commands: argv[1]=Search for a pane
1658824545.033687 cmd_parse_build_commands: argv[2]=f
1658824545.033689 cmd_parse_build_commands: argv[3]=command-prompt
1658824545.033692 cmd_parse_build_commands: argv[4]=find-window -Z -- '%%'
1658824545.033694 cmd_parse: bind-key: argv[0]=bind
1658824545.033696 cmd_parse: bind-key: argv[1]=-N
1658824545.033698 cmd_parse: bind-key: argv[2]=Search for a pane
1658824545.033700 cmd_parse: bind-key: argv[3]=f
1658824545.033702 cmd_parse: bind-key: argv[4]=command-prompt
1658824545.033704 cmd_parse: bind-key: argv[5]=find-window -Z -- '%%'
1658824545.033710 cmd_parse_build_commands: bind-key -N "Search for a pane" f command-prompt "find-window -Z -- '%%'"
1658824545.033713 cmdq_get_command: [bind-key/0x5646481d9f80] group 119
1658824545.033715 cmdq_append <global>: [bind-key/0x5646481d9f80]
1658824545.033718 yylex_token: bind
1658824545.033722 yylex_token: -N
1658824545.033725 yylex_token: Display window information
1658824545.033727 yylex_token: i
1658824545.033729 yylex_token: display-message
1658824545.033732 cmd_parse_build_commands: 0 bind
1658824545.033734 cmd_parse_build_commands: argv[0]=-N
1658824545.033736 cmd_parse_build_commands: argv[1]=Display window information
1658824545.033738 cmd_parse_build_commands: argv[2]=i
1658824545.033740 cmd_parse_build_commands: argv[3]=display-message
1658824545.033742 cmd_parse: bind-key: argv[0]=bind
1658824545.033750 cmd_parse: bind-key: argv[1]=-N
1658824545.033753 cmd_parse: bind-key: argv[2]=Display window information
1658824545.033756 cmd_parse: bind-key: argv[3]=i
1658824545.033758 cmd_parse: bind-key: argv[4]=display-message
1658824545.033763 cmd_parse_build_commands: bind-key -N "Display window information" i display-message
1658824545.033775 cmdq_get_command: [bind-key/0x5646481da330] group 122
1658824545.033778 cmdq_append <global>: [bind-key/0x5646481da330]
1658824545.033782 yylex_token: bind
1658824545.033785 yylex_token: -N
1658824545.033788 yylex_token: Select the previously current window
1658824545.033790 yylex_token: l
1658824545.033792 yylex_token: last-window
1658824545.033795 cmd_parse_build_commands: 0 bind
1658824545.033798 cmd_parse_build_commands: argv[0]=-N
1658824545.033800 cmd_parse_build_commands: argv[1]=Select the previously current window
1658824545.033802 cmd_parse_build_commands: argv[2]=l
1658824545.033804 cmd_parse_build_commands: argv[3]=last-window
1658824545.033806 cmd_parse: bind-key: argv[0]=bind
1658824545.033808 cmd_parse: bind-key: argv[1]=-N
1658824545.033811 cmd_parse: bind-key: argv[2]=Select the previously current window
1658824545.033813 cmd_parse: bind-key: argv[3]=l
1658824545.033815 cmd_parse: bind-key: argv[4]=last-window
1658824545.033820 cmd_parse_build_commands: bind-key -N "Select the previously current window" l last-window
1658824545.033822 cmdq_get_command: [bind-key/0x5646481da780] group 125
1658824545.033824 cmdq_append <global>: [bind-key/0x5646481da780]
1658824545.033827 yylex_token: bind
1658824545.033829 yylex_token: -N
1658824545.033833 yylex_token: Toggle the marked pane
1658824545.033835 yylex_token: m
1658824545.033838 yylex_token: select-pane
1658824545.033840 yylex_token: -m
1658824545.033842 cmd_parse_build_commands: 0 bind
1658824545.033845 cmd_parse_build_commands: argv[0]=-N
1658824545.033847 cmd_parse_build_commands: argv[1]=Toggle the marked pane
1658824545.033849 cmd_parse_build_commands: argv[2]=m
1658824545.033851 cmd_parse_build_commands: argv[3]=select-pane
1658824545.033853 cmd_parse_build_commands: argv[4]=-m
1658824545.033855 cmd_parse: bind-key: argv[0]=bind
1658824545.033857 cmd_parse: bind-key: argv[1]=-N
1658824545.033859 cmd_parse: bind-key: argv[2]=Toggle the marked pane
1658824545.033861 cmd_parse: bind-key: argv[3]=m
1658824545.033863 cmd_parse: bind-key: argv[4]=select-pane
1658824545.033865 cmd_parse: bind-key: argv[5]=-m
1658824545.033870 cmd_parse_build_commands: bind-key -N "Toggle the marked pane" m select-pane -m
1658824545.033884 cmdq_get_command: [bind-key/0x5646481daf90] group 128
1658824545.033887 cmdq_append <global>: [bind-key/0x5646481daf90]
1658824545.033890 yylex_token: bind
1658824545.033892 yylex_token: -N
1658824545.033894 yylex_token: Select the next window
1658824545.033896 yylex_token: n
1658824545.033899 yylex_token: next-window
1658824545.033901 cmd_parse_build_commands: 0 bind
1658824545.033904 cmd_parse_build_commands: argv[0]=-N
1658824545.033907 cmd_parse_build_commands: argv[1]=Select the next window
1658824545.033909 cmd_parse_build_commands: argv[2]=n
1658824545.033911 cmd_parse_build_commands: argv[3]=next-window
1658824545.033914 cmd_parse: bind-key: argv[0]=bind
1658824545.033916 cmd_parse: bind-key: argv[1]=-N
1658824545.033918 cmd_parse: bind-key: argv[2]=Select the next window
1658824545.033920 cmd_parse: bind-key: argv[3]=n
1658824545.033922 cmd_parse: bind-key: argv[4]=next-window
1658824545.033926 cmd_parse_build_commands: bind-key -N "Select the next window" n next-window
1658824545.033937 cmdq_get_command: [bind-key/0x5646481db440] group 131
1658824545.033940 cmdq_append <global>: [bind-key/0x5646481db440]
1658824545.033944 yylex_token: bind
1658824545.033947 yylex_token: -N
1658824545.033949 yylex_token: Select the next pane
1658824545.033951 yylex_token: o
1658824545.033953 yylex_token: select-pane
1658824545.033955 yylex_token: -t:.+
1658824545.033958 cmd_parse_build_commands: 0 bind
1658824545.033960 cmd_parse_build_commands: argv[0]=-N
1658824545.033963 cmd_parse_build_commands: argv[1]=Select the next pane
1658824545.033967 cmd_parse_build_commands: argv[2]=o
1658824545.033969 cmd_parse_build_commands: argv[3]=select-pane
1658824545.033971 cmd_parse_build_commands: argv[4]=-t:.+
1658824545.033973 cmd_parse: bind-key: argv[0]=bind
1658824545.033975 cmd_parse: bind-key: argv[1]=-N
1658824545.033977 cmd_parse: bind-key: argv[2]=Select the next pane
1658824545.033979 cmd_parse: bind-key: argv[3]=o
1658824545.033981 cmd_parse: bind-key: argv[4]=select-pane
1658824545.033983 cmd_parse: bind-key: argv[5]=-t:.+
1658824545.033988 cmd_parse_build_commands: bind-key -N "Select the next pane" o select-pane -t:.+
1658824545.034000 cmdq_get_command: [bind-key/0x5646481db8d0] group 134
1658824545.034003 cmdq_append <global>: [bind-key/0x5646481db8d0]
1658824545.034005 yylex_token: bind
1658824545.034008 yylex_token: -N
1658824545.034010 yylex_token: Select the previous pane
1658824545.034012 yylex_token: p
1658824545.034015 yylex_token: previous-window
1658824545.034017 cmd_parse_build_commands: 0 bind
1658824545.034019 cmd_parse_build_commands: argv[0]=-N
1658824545.034022 cmd_parse_build_commands: argv[1]=Select the previous pane
1658824545.034024 cmd_parse_build_commands: argv[2]=p
1658824545.034026 cmd_parse_build_commands: argv[3]=previous-window
1658824545.034028 cmd_parse: bind-key: argv[0]=bind
1658824545.034030 cmd_parse: bind-key: argv[1]=-N
1658824545.034032 cmd_parse: bind-key: argv[2]=Select the previous pane
1658824545.034034 cmd_parse: bind-key: argv[3]=p
1658824545.034036 cmd_parse: bind-key: argv[4]=previous-window
1658824545.034041 cmd_parse_build_commands: bind-key -N "Select the previous pane" p previous-window
1658824545.034052 cmdq_get_command: [bind-key/0x5646481dbcd0] group 137
1658824545.034055 cmdq_append <global>: [bind-key/0x5646481dbcd0]
1658824545.034058 yylex_token: bind
1658824545.034060 yylex_token: -N
1658824545.034063 yylex_token: Display pane numbers
1658824545.034065 yylex_token: q
1658824545.034067 yylex_token: display-panes
1658824545.034070 cmd_parse_build_commands: 0 bind
1658824545.034072 cmd_parse_build_commands: argv[0]=-N
1658824545.034074 cmd_parse_build_commands: argv[1]=Display pane numbers
1658824545.034076 cmd_parse_build_commands: argv[2]=q
1658824545.034079 cmd_parse_build_commands: argv[3]=display-panes
1658824545.034081 cmd_parse: bind-key: argv[0]=bind
1658824545.034085 cmd_parse: bind-key: argv[1]=-N
1658824545.034087 cmd_parse: bind-key: argv[2]=Display pane numbers
1658824545.034089 cmd_parse: bind-key: argv[3]=q
1658824545.034093 cmd_parse: bind-key: argv[4]=display-panes
1658824545.034098 cmd_parse_build_commands: bind-key -N "Display pane numbers" q display-panes
1658824545.034101 cmdq_get_command: [bind-key/0x5646481dc160] group 140
1658824545.034103 cmdq_append <global>: [bind-key/0x5646481dc160]
1658824545.034106 yylex_token: bind
1658824545.034108 yylex_token: -N
1658824545.034110 yylex_token: Redraw the current client
1658824545.034112 yylex_token: r
1658824545.034115 yylex_token: refresh-client
1658824545.034117 cmd_parse_build_commands: 0 bind
1658824545.034119 cmd_parse_build_commands: argv[0]=-N
1658824545.034121 cmd_parse_build_commands: argv[1]=Redraw the current client
1658824545.034124 cmd_parse_build_commands: argv[2]=r
1658824545.034126 cmd_parse_build_commands: argv[3]=refresh-client
1658824545.034128 cmd_parse: bind-key: argv[0]=bind
1658824545.034130 cmd_parse: bind-key: argv[1]=-N
1658824545.034132 cmd_parse: bind-key: argv[2]=Redraw the current client
1658824545.034134 cmd_parse: bind-key: argv[3]=r
1658824545.034136 cmd_parse: bind-key: argv[4]=refresh-client
1658824545.034140 cmd_parse_build_commands: bind-key -N "Redraw the current client" r refresh-client
1658824545.034152 cmdq_get_command: [bind-key/0x5646481dc5a0] group 143
1658824545.034155 cmdq_append <global>: [bind-key/0x5646481dc5a0]
1658824545.034162 yylex_token: bind
1658824545.034165 yylex_token: -N
1658824545.034168 yylex_token: Choose a session from a list
1658824545.034170 yylex_token: s
1658824545.034172 yylex_token: choose-tree
1658824545.034174 yylex_token: -Zs
1658824545.034180 cmd_parse_build_commands: 0 bind
1658824545.034183 cmd_parse_build_commands: argv[0]=-N
1658824545.034185 cmd_parse_build_commands: argv[1]=Choose a session from a list
1658824545.034187 cmd_parse_build_commands: argv[2]=s
1658824545.034189 cmd_parse_build_commands: argv[3]=choose-tree
1658824545.034191 cmd_parse_build_commands: argv[4]=-Zs
1658824545.034193 cmd_parse: bind-key: argv[0]=bind
1658824545.034196 cmd_parse: bind-key: argv[1]=-N
1658824545.034198 cmd_parse: bind-key: argv[2]=Choose a session from a list
1658824545.034200 cmd_parse: bind-key: argv[3]=s
1658824545.034202 cmd_parse: bind-key: argv[4]=choose-tree
1658824545.034204 cmd_parse: bind-key: argv[5]=-Zs
1658824545.034209 cmd_parse_build_commands: bind-key -N "Choose a session from a list" s choose-tree -Zs
1658824545.034222 cmdq_get_command: [bind-key/0x5646481dca40] group 146
1658824545.034225 cmdq_append <global>: [bind-key/0x5646481dca40]
1658824545.034227 yylex_token: bind
1658824545.034230 yylex_token: -N
1658824545.034232 yylex_token: Show a clock
1658824545.034234 yylex_token: t
1658824545.034236 yylex_token: clock-mode
1658824545.034239 cmd_parse_build_commands: 0 bind
1658824545.034243 cmd_parse_build_commands: argv[0]=-N
1658824545.034246 cmd_parse_build_commands: argv[1]=Show a clock
1658824545.034248 cmd_parse_build_commands: argv[2]=t
1658824545.034250 cmd_parse_build_commands: argv[3]=clock-mode
1658824545.034252 cmd_parse: bind-key: argv[0]=bind
1658824545.034254 cmd_parse: bind-key: argv[1]=-N
1658824545.034256 cmd_parse: bind-key: argv[2]=Show a clock
1658824545.034258 cmd_parse: bind-key: argv[3]=t