-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux-server-2423.log
11077 lines (11077 loc) · 674 KB
/
tmux-server-2423.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
1596705059.003801 server started (2423): version 3.1, socket /tmp/tmux-0/default, protocol 8
1596705059.003839 on Linux 5.6.6-300.fc32.aarch64 #1 SMP Tue Apr 21 13:25:53 UTC 2020; libevent 2.1.8-stable (poll)
1596705059.003951 yylex_token: bind
1596705059.003960 yylex_token: -N
1596705059.003967 yylex_token: Send the prefix key
1596705059.003973 yylex_token: C-b
1596705059.003979 yylex_token: send-prefix
1596705059.003995 cmd_parse_build_commands: 0 bind
1596705059.004001 cmd_parse_build_commands: argv[0]=-N
1596705059.004006 cmd_parse_build_commands: argv[1]=Send the prefix key
1596705059.004012 cmd_parse_build_commands: argv[2]=C-b
1596705059.004017 cmd_parse_build_commands: argv[3]=send-prefix
1596705059.004029 cmd_parse: bind-key: argv[0]=bind
1596705059.004035 cmd_parse: bind-key: argv[1]=-N
1596705059.004040 cmd_parse: bind-key: argv[2]=Send the prefix key
1596705059.004045 cmd_parse: bind-key: argv[3]=C-b
1596705059.004050 cmd_parse: bind-key: argv[4]=send-prefix
1596705059.004076 cmd_parse_build_commands: bind-key -N "Send the prefix key" C-b send-prefix
1596705059.004085 cmdq_get_command: [bind-key/0xaaaaf7ddf140] group 5
1596705059.004091 cmdq_append <global>: [bind-key/0xaaaaf7ddf140]
1596705059.004104 yylex_token: bind
1596705059.004110 yylex_token: -N
1596705059.004117 yylex_token: Rotate through the panes
1596705059.004122 yylex_token: C-o
1596705059.004128 yylex_token: rotate-window
1596705059.004136 cmd_parse_build_commands: 0 bind
1596705059.004142 cmd_parse_build_commands: argv[0]=-N
1596705059.004147 cmd_parse_build_commands: argv[1]=Rotate through the panes
1596705059.004152 cmd_parse_build_commands: argv[2]=C-o
1596705059.004157 cmd_parse_build_commands: argv[3]=rotate-window
1596705059.004163 cmd_parse: bind-key: argv[0]=bind
1596705059.004168 cmd_parse: bind-key: argv[1]=-N
1596705059.004174 cmd_parse: bind-key: argv[2]=Rotate through the panes
1596705059.004179 cmd_parse: bind-key: argv[3]=C-o
1596705059.004184 cmd_parse: bind-key: argv[4]=rotate-window
1596705059.004197 cmd_parse_build_commands: bind-key -N "Rotate through the panes" C-o rotate-window
1596705059.004205 cmdq_get_command: [bind-key/0xaaaaf7ddfe30] group 8
1596705059.004211 cmdq_append <global>: [bind-key/0xaaaaf7ddfe30]
1596705059.004217 yylex_token: bind
1596705059.004223 yylex_token: -N
1596705059.004229 yylex_token: Suspend the current client
1596705059.004234 yylex_token: C-z
1596705059.004240 yylex_token: suspend-client
1596705059.004248 cmd_parse_build_commands: 0 bind
1596705059.004253 cmd_parse_build_commands: argv[0]=-N
1596705059.004259 cmd_parse_build_commands: argv[1]=Suspend the current client
1596705059.004264 cmd_parse_build_commands: argv[2]=C-z
1596705059.004270 cmd_parse_build_commands: argv[3]=suspend-client
1596705059.004276 cmd_parse: bind-key: argv[0]=bind
1596705059.004281 cmd_parse: bind-key: argv[1]=-N
1596705059.004286 cmd_parse: bind-key: argv[2]=Suspend the current client
1596705059.004291 cmd_parse: bind-key: argv[3]=C-z
1596705059.004297 cmd_parse: bind-key: argv[4]=suspend-client
1596705059.004314 cmd_parse_build_commands: bind-key -N "Suspend the current client" C-z suspend-client
1596705059.004322 cmdq_get_command: [bind-key/0xaaaaf7de0990] group 11
1596705059.004328 cmdq_append <global>: [bind-key/0xaaaaf7de0990]
1596705059.004338 yylex_token: bind
1596705059.004344 yylex_token: -N
1596705059.004350 yylex_token: Select next layout
1596705059.004355 yylex_token: Space
1596705059.004361 yylex_token: next-layout
1596705059.004368 cmd_parse_build_commands: 0 bind
1596705059.004374 cmd_parse_build_commands: argv[0]=-N
1596705059.004380 cmd_parse_build_commands: argv[1]=Select next layout
1596705059.004385 cmd_parse_build_commands: argv[2]=Space
1596705059.004390 cmd_parse_build_commands: argv[3]=next-layout
1596705059.004396 cmd_parse: bind-key: argv[0]=bind
1596705059.004402 cmd_parse: bind-key: argv[1]=-N
1596705059.004407 cmd_parse: bind-key: argv[2]=Select next layout
1596705059.004413 cmd_parse: bind-key: argv[3]=Space
1596705059.004418 cmd_parse: bind-key: argv[4]=next-layout
1596705059.004430 cmd_parse_build_commands: bind-key -N "Select next layout" Space next-layout
1596705059.004456 cmdq_get_command: [bind-key/0xaaaaf7de1180] group 14
1596705059.004462 cmdq_append <global>: [bind-key/0xaaaaf7de1180]
1596705059.004468 yylex_token: bind
1596705059.004474 yylex_token: -N
1596705059.004481 yylex_token: Break pane to a new window
1596705059.004486 yylex_token: !
1596705059.004491 yylex_token: break-pane
1596705059.004498 cmd_parse_build_commands: 0 bind
1596705059.004504 cmd_parse_build_commands: argv[0]=-N
1596705059.004509 cmd_parse_build_commands: argv[1]=Break pane to a new window
1596705059.004514 cmd_parse_build_commands: argv[2]=!
1596705059.004520 cmd_parse_build_commands: argv[3]=break-pane
1596705059.004525 cmd_parse: bind-key: argv[0]=bind
1596705059.004530 cmd_parse: bind-key: argv[1]=-N
1596705059.004536 cmd_parse: bind-key: argv[2]=Break pane to a new window
1596705059.004541 cmd_parse: bind-key: argv[3]=!
1596705059.004546 cmd_parse: bind-key: argv[4]=break-pane
1596705059.004558 cmd_parse_build_commands: bind-key -N "Break pane to a new window" ! break-pane
1596705059.004565 cmdq_get_command: [bind-key/0xaaaaf7de1aa0] group 17
1596705059.004571 cmdq_append <global>: [bind-key/0xaaaaf7de1aa0]
1596705059.004581 yylex_token: bind
1596705059.004587 yylex_token: -N
1596705059.004594 yylex_token: Split window vertically
1596705059.004599 yylex_token: "
1596705059.004605 yylex_token: split-window
1596705059.004612 cmd_parse_build_commands: 0 bind
1596705059.004618 cmd_parse_build_commands: argv[0]=-N
1596705059.004623 cmd_parse_build_commands: argv[1]=Split window vertically
1596705059.004629 cmd_parse_build_commands: argv[2]="
1596705059.004634 cmd_parse_build_commands: argv[3]=split-window
1596705059.004640 cmd_parse: bind-key: argv[0]=bind
1596705059.004645 cmd_parse: bind-key: argv[1]=-N
1596705059.004650 cmd_parse: bind-key: argv[2]=Split window vertically
1596705059.004656 cmd_parse: bind-key: argv[3]="
1596705059.004661 cmd_parse: bind-key: argv[4]=split-window
1596705059.004673 cmd_parse_build_commands: bind-key -N "Split window vertically" \\" split-window
1596705059.004680 cmdq_get_command: [bind-key/0xaaaaf7de20e0] group 20
1596705059.004686 cmdq_append <global>: [bind-key/0xaaaaf7de20e0]
1596705059.004693 yylex_token: bind
1596705059.004698 yylex_token: -N
1596705059.004705 yylex_token: List all paste buffers
1596705059.004710 yylex_token: #
1596705059.004716 yylex_token: list-buffers
1596705059.004723 cmd_parse_build_commands: 0 bind
1596705059.004728 cmd_parse_build_commands: argv[0]=-N
1596705059.004734 cmd_parse_build_commands: argv[1]=List all paste buffers
1596705059.004739 cmd_parse_build_commands: argv[2]=#
1596705059.004744 cmd_parse_build_commands: argv[3]=list-buffers
1596705059.004750 cmd_parse: bind-key: argv[0]=bind
1596705059.004756 cmd_parse: bind-key: argv[1]=-N
1596705059.004761 cmd_parse: bind-key: argv[2]=List all paste buffers
1596705059.004766 cmd_parse: bind-key: argv[3]=#
1596705059.004772 cmd_parse: bind-key: argv[4]=list-buffers
1596705059.004783 cmd_parse_build_commands: bind-key -N "List all paste buffers" \\# list-buffers
1596705059.004791 cmdq_get_command: [bind-key/0xaaaaf7de25c0] group 23
1596705059.004885 cmdq_append <global>: [bind-key/0xaaaaf7de25c0]
1596705059.004902 yylex_token: bind
1596705059.004908 yylex_token: -N
1596705059.004915 yylex_token: Rename current session
1596705059.004920 yylex_token: $
1596705059.004926 yylex_token: command-prompt
1596705059.004932 yylex_token: -I#S
1596705059.004938 yylex_token: rename-session -- '%%'
1596705059.004947 cmd_parse_build_commands: 0 bind
1596705059.004953 cmd_parse_build_commands: argv[0]=-N
1596705059.004958 cmd_parse_build_commands: argv[1]=Rename current session
1596705059.004964 cmd_parse_build_commands: argv[2]=$
1596705059.004969 cmd_parse_build_commands: argv[3]=command-prompt
1596705059.004975 cmd_parse_build_commands: argv[4]=-I#S
1596705059.004980 cmd_parse_build_commands: argv[5]=rename-session -- '%%'
1596705059.004987 cmd_parse: bind-key: argv[0]=bind
1596705059.004992 cmd_parse: bind-key: argv[1]=-N
1596705059.005005 cmd_parse: bind-key: argv[2]=Rename current session
1596705059.005011 cmd_parse: bind-key: argv[3]=$
1596705059.005016 cmd_parse: bind-key: argv[4]=command-prompt
1596705059.005021 cmd_parse: bind-key: argv[5]=-I#S
1596705059.005027 cmd_parse: bind-key: argv[6]=rename-session -- '%%'
1596705059.005047 cmd_parse_build_commands: bind-key -N "Rename current session" \\$ command-prompt "-I#S" "rename-session -- '%%'"
1596705059.005054 cmdq_get_command: [bind-key/0xaaaaf7de3070] group 26
1596705059.005060 cmdq_append <global>: [bind-key/0xaaaaf7de3070]
1596705059.005067 yylex_token: bind
1596705059.005072 yylex_token: -N
1596705059.005079 yylex_token: Split window horizontally
1596705059.005084 yylex_get_word: %
1596705059.005090 yylex_token: split-window
1596705059.005095 yylex_token: -h
1596705059.005103 cmd_parse_build_commands: 0 bind
1596705059.005108 cmd_parse_build_commands: argv[0]=-N
1596705059.005114 cmd_parse_build_commands: argv[1]=Split window horizontally
1596705059.005119 cmd_parse_build_commands: argv[2]=%
1596705059.005124 cmd_parse_build_commands: argv[3]=split-window
1596705059.005129 cmd_parse_build_commands: argv[4]=-h
1596705059.005135 cmd_parse: bind-key: argv[0]=bind
1596705059.005140 cmd_parse: bind-key: argv[1]=-N
1596705059.005146 cmd_parse: bind-key: argv[2]=Split window horizontally
1596705059.005151 cmd_parse: bind-key: argv[3]=%
1596705059.005156 cmd_parse: bind-key: argv[4]=split-window
1596705059.005161 cmd_parse: bind-key: argv[5]=-h
1596705059.005174 cmd_parse_build_commands: bind-key -N "Split window horizontally" % split-window -h
1596705059.005181 cmdq_get_command: [bind-key/0xaaaaf7de3760] group 29
1596705059.005187 cmdq_append <global>: [bind-key/0xaaaaf7de3760]
1596705059.005198 yylex_token: bind
1596705059.005203 yylex_token: -N
1596705059.005210 yylex_token: Kill current window
1596705059.005215 yylex_token: &
1596705059.005221 yylex_token: confirm-before
1596705059.005227 yylex_token: -pkill-window #W? (y/n)
1596705059.005233 yylex_token: kill-window
1596705059.005240 cmd_parse_build_commands: 0 bind
1596705059.005246 cmd_parse_build_commands: argv[0]=-N
1596705059.005252 cmd_parse_build_commands: argv[1]=Kill current window
1596705059.005257 cmd_parse_build_commands: argv[2]=&
1596705059.005262 cmd_parse_build_commands: argv[3]=confirm-before
1596705059.005268 cmd_parse_build_commands: argv[4]=-pkill-window #W? (y/n)
1596705059.005273 cmd_parse_build_commands: argv[5]=kill-window
1596705059.005279 cmd_parse: bind-key: argv[0]=bind
1596705059.005284 cmd_parse: bind-key: argv[1]=-N
1596705059.005289 cmd_parse: bind-key: argv[2]=Kill current window
1596705059.005294 cmd_parse: bind-key: argv[3]=&
1596705059.005300 cmd_parse: bind-key: argv[4]=confirm-before
1596705059.005305 cmd_parse: bind-key: argv[5]=-pkill-window #W? (y/n)
1596705059.005311 cmd_parse: bind-key: argv[6]=kill-window
1596705059.005327 cmd_parse_build_commands: bind-key -N "Kill current window" & confirm-before "-pkill-window #W? (y/n)" kill-window
1596705059.005335 cmdq_get_command: [bind-key/0xaaaaf7de41c0] group 32
1596705059.005341 cmdq_append <global>: [bind-key/0xaaaaf7de41c0]
1596705059.005348 yylex_token: bind
1596705059.005353 yylex_token: -N
1596705059.005360 yylex_token: Prompt for window index to select
1596705059.005366 yylex_token: '
1596705059.005372 yylex_token: command-prompt
1596705059.005377 yylex_token: -pindex
1596705059.005384 yylex_token: select-window -t ':%%'
1596705059.005391 cmd_parse_build_commands: 0 bind
1596705059.005397 cmd_parse_build_commands: argv[0]=-N
1596705059.005402 cmd_parse_build_commands: argv[1]=Prompt for window index to select
1596705059.005408 cmd_parse_build_commands: argv[2]='
1596705059.005413 cmd_parse_build_commands: argv[3]=command-prompt
1596705059.005419 cmd_parse_build_commands: argv[4]=-pindex
1596705059.005424 cmd_parse_build_commands: argv[5]=select-window -t ':%%'
1596705059.005431 cmd_parse: bind-key: argv[0]=bind
1596705059.005436 cmd_parse: bind-key: argv[1]=-N
1596705059.005441 cmd_parse: bind-key: argv[2]=Prompt for window index to select
1596705059.005452 cmd_parse: bind-key: argv[3]='
1596705059.005458 cmd_parse: bind-key: argv[4]=command-prompt
1596705059.005463 cmd_parse: bind-key: argv[5]=-pindex
1596705059.005468 cmd_parse: bind-key: argv[6]=select-window -t ':%%'
1596705059.005486 cmd_parse_build_commands: bind-key -N "Prompt for window index to select" \\' command-prompt -pindex "select-window -t ':%%'"
1596705059.005493 cmdq_get_command: [bind-key/0xaaaaf7de4880] group 35
1596705059.005498 cmdq_append <global>: [bind-key/0xaaaaf7de4880]
1596705059.005509 yylex_token: bind
1596705059.005515 yylex_token: -N
1596705059.005521 yylex_token: Switch to previous client
1596705059.005526 yylex_token: (
1596705059.005532 yylex_token: switch-client
1596705059.005537 yylex_token: -p
1596705059.005544 cmd_parse_build_commands: 0 bind
1596705059.005549 cmd_parse_build_commands: argv[0]=-N
1596705059.005555 cmd_parse_build_commands: argv[1]=Switch to previous client
1596705059.005560 cmd_parse_build_commands: argv[2]=(
1596705059.005565 cmd_parse_build_commands: argv[3]=switch-client
1596705059.005570 cmd_parse_build_commands: argv[4]=-p
1596705059.005576 cmd_parse: bind-key: argv[0]=bind
1596705059.005581 cmd_parse: bind-key: argv[1]=-N
1596705059.005586 cmd_parse: bind-key: argv[2]=Switch to previous client
1596705059.005591 cmd_parse: bind-key: argv[3]=(
1596705059.005597 cmd_parse: bind-key: argv[4]=switch-client
1596705059.005602 cmd_parse: bind-key: argv[5]=-p
1596705059.005615 cmd_parse_build_commands: bind-key -N "Switch to previous client" ( switch-client -p
1596705059.005622 cmdq_get_command: [bind-key/0xaaaaf7de4e60] group 38
1596705059.005627 cmdq_append <global>: [bind-key/0xaaaaf7de4e60]
1596705059.005634 yylex_token: bind
1596705059.005639 yylex_token: -N
1596705059.005645 yylex_token: Switch to next client
1596705059.005650 yylex_token: )
1596705059.005656 yylex_token: switch-client
1596705059.005661 yylex_token: -n
1596705059.005668 cmd_parse_build_commands: 0 bind
1596705059.005674 cmd_parse_build_commands: argv[0]=-N
1596705059.005679 cmd_parse_build_commands: argv[1]=Switch to next client
1596705059.005684 cmd_parse_build_commands: argv[2]=)
1596705059.005689 cmd_parse_build_commands: argv[3]=switch-client
1596705059.005695 cmd_parse_build_commands: argv[4]=-n
1596705059.005700 cmd_parse: bind-key: argv[0]=bind
1596705059.005706 cmd_parse: bind-key: argv[1]=-N
1596705059.005711 cmd_parse: bind-key: argv[2]=Switch to next client
1596705059.005716 cmd_parse: bind-key: argv[3]=)
1596705059.005721 cmd_parse: bind-key: argv[4]=switch-client
1596705059.005726 cmd_parse: bind-key: argv[5]=-n
1596705059.005739 cmd_parse_build_commands: bind-key -N "Switch to next client" ) switch-client -n
1596705059.005746 cmdq_get_command: [bind-key/0xaaaaf7de5550] group 41
1596705059.005752 cmdq_append <global>: [bind-key/0xaaaaf7de5550]
1596705059.005763 yylex_token: bind
1596705059.005768 yylex_token: -N
1596705059.005774 yylex_token: Rename current window
1596705059.005779 yylex_token: ,
1596705059.005785 yylex_token: command-prompt
1596705059.005791 yylex_token: -I#W
1596705059.005797 yylex_token: rename-window -- '%%'
1596705059.005804 cmd_parse_build_commands: 0 bind
1596705059.005810 cmd_parse_build_commands: argv[0]=-N
1596705059.005816 cmd_parse_build_commands: argv[1]=Rename current window
1596705059.005821 cmd_parse_build_commands: argv[2]=,
1596705059.005826 cmd_parse_build_commands: argv[3]=command-prompt
1596705059.005832 cmd_parse_build_commands: argv[4]=-I#W
1596705059.005837 cmd_parse_build_commands: argv[5]=rename-window -- '%%'
1596705059.005843 cmd_parse: bind-key: argv[0]=bind
1596705059.005849 cmd_parse: bind-key: argv[1]=-N
1596705059.005854 cmd_parse: bind-key: argv[2]=Rename current window
1596705059.005860 cmd_parse: bind-key: argv[3]=,
1596705059.005865 cmd_parse: bind-key: argv[4]=command-prompt
1596705059.005870 cmd_parse: bind-key: argv[5]=-I#W
1596705059.005876 cmd_parse: bind-key: argv[6]=rename-window -- '%%'
1596705059.005892 cmd_parse_build_commands: bind-key -N "Rename current window" , command-prompt "-I#W" "rename-window -- '%%'"
1596705059.005905 cmdq_get_command: [bind-key/0xaaaaf7de5ab0] group 44
1596705059.005911 cmdq_append <global>: [bind-key/0xaaaaf7de5ab0]
1596705059.005918 yylex_token: bind
1596705059.005923 yylex_token: -N
1596705059.005931 yylex_token: Delete the most recent paste buffer
1596705059.005936 yylex_token: -
1596705059.005942 yylex_token: delete-buffer
1596705059.005949 cmd_parse_build_commands: 0 bind
1596705059.005954 cmd_parse_build_commands: argv[0]=-N
1596705059.005960 cmd_parse_build_commands: argv[1]=Delete the most recent paste buffer
1596705059.005965 cmd_parse_build_commands: argv[2]=-
1596705059.005970 cmd_parse_build_commands: argv[3]=delete-buffer
1596705059.005976 cmd_parse: bind-key: argv[0]=bind
1596705059.005981 cmd_parse: bind-key: argv[1]=-N
1596705059.005986 cmd_parse: bind-key: argv[2]=Delete the most recent paste buffer
1596705059.005991 cmd_parse: bind-key: argv[3]=-
1596705059.005997 cmd_parse: bind-key: argv[4]=delete-buffer
1596705059.006009 cmd_parse_build_commands: bind-key -N "Delete the most recent paste buffer" - delete-buffer
1596705059.006016 cmdq_get_command: [bind-key/0xaaaaf7de5e60] group 47
1596705059.006021 cmdq_append <global>: [bind-key/0xaaaaf7de5e60]
1596705059.006028 yylex_token: bind
1596705059.006033 yylex_token: -N
1596705059.006040 yylex_token: Move the current window
1596705059.006045 yylex_token: .
1596705059.006050 yylex_token: command-prompt
1596705059.006057 yylex_token: move-window -t '%%'
1596705059.006064 cmd_parse_build_commands: 0 bind
1596705059.006069 cmd_parse_build_commands: argv[0]=-N
1596705059.006074 cmd_parse_build_commands: argv[1]=Move the current window
1596705059.006079 cmd_parse_build_commands: argv[2]=.
1596705059.006085 cmd_parse_build_commands: argv[3]=command-prompt
1596705059.006090 cmd_parse_build_commands: argv[4]=move-window -t '%%'
1596705059.006096 cmd_parse: bind-key: argv[0]=bind
1596705059.006102 cmd_parse: bind-key: argv[1]=-N
1596705059.006107 cmd_parse: bind-key: argv[2]=Move the current window
1596705059.006112 cmd_parse: bind-key: argv[3]=.
1596705059.006117 cmd_parse: bind-key: argv[4]=command-prompt
1596705059.006123 cmd_parse: bind-key: argv[5]=move-window -t '%%'
1596705059.006137 cmd_parse_build_commands: bind-key -N "Move the current window" . command-prompt "move-window -t '%%'"
1596705059.006145 cmdq_get_command: [bind-key/0xaaaaf7de6680] group 50
1596705059.006150 cmdq_append <global>: [bind-key/0xaaaaf7de6680]
1596705059.006162 yylex_token: bind
1596705059.006168 yylex_token: -N
1596705059.006174 yylex_token: Describe key binding
1596705059.006179 yylex_token: /
1596705059.006185 yylex_token: command-prompt
1596705059.006191 yylex_token: -kpkey
1596705059.006198 yylex_token: list-keys -1N "%%%"
1596705059.006205 cmd_parse_build_commands: 0 bind
1596705059.006210 cmd_parse_build_commands: argv[0]=-N
1596705059.006216 cmd_parse_build_commands: argv[1]=Describe key binding
1596705059.006221 cmd_parse_build_commands: argv[2]=/
1596705059.006227 cmd_parse_build_commands: argv[3]=command-prompt
1596705059.006232 cmd_parse_build_commands: argv[4]=-kpkey
1596705059.006237 cmd_parse_build_commands: argv[5]=list-keys -1N "%%%"
1596705059.006243 cmd_parse: bind-key: argv[0]=bind
1596705059.006248 cmd_parse: bind-key: argv[1]=-N
1596705059.006254 cmd_parse: bind-key: argv[2]=Describe key binding
1596705059.006259 cmd_parse: bind-key: argv[3]=/
1596705059.006265 cmd_parse: bind-key: argv[4]=command-prompt
1596705059.006270 cmd_parse: bind-key: argv[5]=-kpkey
1596705059.006275 cmd_parse: bind-key: argv[6]=list-keys -1N "%%%"
1596705059.006291 cmd_parse_build_commands: bind-key -N "Describe key binding" / command-prompt -kpkey "list-keys -1N \\"%%%\\""
1596705059.006298 cmdq_get_command: [bind-key/0xaaaaf7de6e80] group 53
1596705059.006304 cmdq_append <global>: [bind-key/0xaaaaf7de6e80]
1596705059.006311 yylex_token: bind
1596705059.006316 yylex_token: -N
1596705059.006322 yylex_token: Select window 0
1596705059.006327 yylex_token: 0
1596705059.006333 yylex_token: select-window
1596705059.006338 yylex_token: -t:=0
1596705059.006345 cmd_parse_build_commands: 0 bind
1596705059.006361 cmd_parse_build_commands: argv[0]=-N
1596705059.006367 cmd_parse_build_commands: argv[1]=Select window 0
1596705059.006372 cmd_parse_build_commands: argv[2]=0
1596705059.006377 cmd_parse_build_commands: argv[3]=select-window
1596705059.006382 cmd_parse_build_commands: argv[4]=-t:=0
1596705059.006388 cmd_parse: bind-key: argv[0]=bind
1596705059.006393 cmd_parse: bind-key: argv[1]=-N
1596705059.006399 cmd_parse: bind-key: argv[2]=Select window 0
1596705059.006404 cmd_parse: bind-key: argv[3]=0
1596705059.006409 cmd_parse: bind-key: argv[4]=select-window
1596705059.006414 cmd_parse: bind-key: argv[5]=-t:=0
1596705059.006427 cmd_parse_build_commands: bind-key -N "Select window 0" 0 select-window -t:=0
1596705059.006434 cmdq_get_command: [bind-key/0xaaaaf7de7290] group 56
1596705059.006439 cmdq_append <global>: [bind-key/0xaaaaf7de7290]
1596705059.006450 yylex_token: bind
1596705059.006482 yylex_token: -N
1596705059.006491 yylex_token: Select window 1
1596705059.006515 yylex_token: 1
1596705059.006522 yylex_token: select-window
1596705059.006528 yylex_token: -t:=1
1596705059.006537 cmd_parse_build_commands: 0 bind
1596705059.006543 cmd_parse_build_commands: argv[0]=-N
1596705059.006548 cmd_parse_build_commands: argv[1]=Select window 1
1596705059.006554 cmd_parse_build_commands: argv[2]=1
1596705059.006559 cmd_parse_build_commands: argv[3]=select-window
1596705059.006565 cmd_parse_build_commands: argv[4]=-t:=1
1596705059.006571 cmd_parse: bind-key: argv[0]=bind
1596705059.006576 cmd_parse: bind-key: argv[1]=-N
1596705059.006581 cmd_parse: bind-key: argv[2]=Select window 1
1596705059.006586 cmd_parse: bind-key: argv[3]=1
1596705059.006591 cmd_parse: bind-key: argv[4]=select-window
1596705059.006596 cmd_parse: bind-key: argv[5]=-t:=1
1596705059.006611 cmd_parse_build_commands: bind-key -N "Select window 1" 1 select-window -t:=1
1596705059.006618 cmdq_get_command: [bind-key/0xaaaaf7de7800] group 59
1596705059.006624 cmdq_append <global>: [bind-key/0xaaaaf7de7800]
1596705059.006631 yylex_token: bind
1596705059.006636 yylex_token: -N
1596705059.006643 yylex_token: Select window 2
1596705059.006647 yylex_token: 2
1596705059.006653 yylex_token: select-window
1596705059.006658 yylex_token: -t:=2
1596705059.006665 cmd_parse_build_commands: 0 bind
1596705059.006671 cmd_parse_build_commands: argv[0]=-N
1596705059.006676 cmd_parse_build_commands: argv[1]=Select window 2
1596705059.006682 cmd_parse_build_commands: argv[2]=2
1596705059.006687 cmd_parse_build_commands: argv[3]=select-window
1596705059.006692 cmd_parse_build_commands: argv[4]=-t:=2
1596705059.006698 cmd_parse: bind-key: argv[0]=bind
1596705059.006703 cmd_parse: bind-key: argv[1]=-N
1596705059.006708 cmd_parse: bind-key: argv[2]=Select window 2
1596705059.006713 cmd_parse: bind-key: argv[3]=2
1596705059.006719 cmd_parse: bind-key: argv[4]=select-window
1596705059.006724 cmd_parse: bind-key: argv[5]=-t:=2
1596705059.006737 cmd_parse_build_commands: bind-key -N "Select window 2" 2 select-window -t:=2
1596705059.006744 cmdq_get_command: [bind-key/0xaaaaf7de7e60] group 62
1596705059.006750 cmdq_append <global>: [bind-key/0xaaaaf7de7e60]
1596705059.006756 yylex_token: bind
1596705059.006762 yylex_token: -N
1596705059.006768 yylex_token: Select window 3
1596705059.006773 yylex_token: 3
1596705059.006779 yylex_token: select-window
1596705059.006784 yylex_token: -t:=3
1596705059.006791 cmd_parse_build_commands: 0 bind
1596705059.006797 cmd_parse_build_commands: argv[0]=-N
1596705059.006802 cmd_parse_build_commands: argv[1]=Select window 3
1596705059.006808 cmd_parse_build_commands: argv[2]=3
1596705059.006813 cmd_parse_build_commands: argv[3]=select-window
1596705059.006818 cmd_parse_build_commands: argv[4]=-t:=3
1596705059.006824 cmd_parse: bind-key: argv[0]=bind
1596705059.006829 cmd_parse: bind-key: argv[1]=-N
1596705059.006835 cmd_parse: bind-key: argv[2]=Select window 3
1596705059.006840 cmd_parse: bind-key: argv[3]=3
1596705059.006845 cmd_parse: bind-key: argv[4]=select-window
1596705059.006850 cmd_parse: bind-key: argv[5]=-t:=3
1596705059.006872 cmd_parse_build_commands: bind-key -N "Select window 3" 3 select-window -t:=3
1596705059.006879 cmdq_get_command: [bind-key/0xaaaaf7de8170] group 65
1596705059.006885 cmdq_append <global>: [bind-key/0xaaaaf7de8170]
1596705059.006891 yylex_token: bind
1596705059.006896 yylex_token: -N
1596705059.006902 yylex_token: Select window 4
1596705059.006907 yylex_token: 4
1596705059.006913 yylex_token: select-window
1596705059.006918 yylex_token: -t:=4
1596705059.006925 cmd_parse_build_commands: 0 bind
1596705059.006931 cmd_parse_build_commands: argv[0]=-N
1596705059.006936 cmd_parse_build_commands: argv[1]=Select window 4
1596705059.006941 cmd_parse_build_commands: argv[2]=4
1596705059.006946 cmd_parse_build_commands: argv[3]=select-window
1596705059.006951 cmd_parse_build_commands: argv[4]=-t:=4
1596705059.006957 cmd_parse: bind-key: argv[0]=bind
1596705059.006962 cmd_parse: bind-key: argv[1]=-N
1596705059.006967 cmd_parse: bind-key: argv[2]=Select window 4
1596705059.006973 cmd_parse: bind-key: argv[3]=4
1596705059.006978 cmd_parse: bind-key: argv[4]=select-window
1596705059.006983 cmd_parse: bind-key: argv[5]=-t:=4
1596705059.006995 cmd_parse_build_commands: bind-key -N "Select window 4" 4 select-window -t:=4
1596705059.007002 cmdq_get_command: [bind-key/0xaaaaf7de8690] group 68
1596705059.007008 cmdq_append <global>: [bind-key/0xaaaaf7de8690]
1596705059.007019 yylex_token: bind
1596705059.007025 yylex_token: -N
1596705059.007031 yylex_token: Select window 5
1596705059.007036 yylex_token: 5
1596705059.007042 yylex_token: select-window
1596705059.007047 yylex_token: -t:=5
1596705059.007054 cmd_parse_build_commands: 0 bind
1596705059.007060 cmd_parse_build_commands: argv[0]=-N
1596705059.007065 cmd_parse_build_commands: argv[1]=Select window 5
1596705059.007071 cmd_parse_build_commands: argv[2]=5
1596705059.007076 cmd_parse_build_commands: argv[3]=select-window
1596705059.007081 cmd_parse_build_commands: argv[4]=-t:=5
1596705059.007088 cmd_parse: bind-key: argv[0]=bind
1596705059.007093 cmd_parse: bind-key: argv[1]=-N
1596705059.007098 cmd_parse: bind-key: argv[2]=Select window 5
1596705059.007103 cmd_parse: bind-key: argv[3]=5
1596705059.007108 cmd_parse: bind-key: argv[4]=select-window
1596705059.007114 cmd_parse: bind-key: argv[5]=-t:=5
1596705059.007126 cmd_parse_build_commands: bind-key -N "Select window 5" 5 select-window -t:=5
1596705059.007133 cmdq_get_command: [bind-key/0xaaaaf7de8c10] group 71
1596705059.007139 cmdq_append <global>: [bind-key/0xaaaaf7de8c10]
1596705059.007146 yylex_token: bind
1596705059.007151 yylex_token: -N
1596705059.007157 yylex_token: Select window 6
1596705059.007162 yylex_token: 6
1596705059.007168 yylex_token: select-window
1596705059.007173 yylex_token: -t:=6
1596705059.007180 cmd_parse_build_commands: 0 bind
1596705059.007186 cmd_parse_build_commands: argv[0]=-N
1596705059.007191 cmd_parse_build_commands: argv[1]=Select window 6
1596705059.007196 cmd_parse_build_commands: argv[2]=6
1596705059.007202 cmd_parse_build_commands: argv[3]=select-window
1596705059.007207 cmd_parse_build_commands: argv[4]=-t:=6
1596705059.007212 cmd_parse: bind-key: argv[0]=bind
1596705059.007217 cmd_parse: bind-key: argv[1]=-N
1596705059.007223 cmd_parse: bind-key: argv[2]=Select window 6
1596705059.007228 cmd_parse: bind-key: argv[3]=6
1596705059.007233 cmd_parse: bind-key: argv[4]=select-window
1596705059.007238 cmd_parse: bind-key: argv[5]=-t:=6
1596705059.007251 cmd_parse_build_commands: bind-key -N "Select window 6" 6 select-window -t:=6
1596705059.007258 cmdq_get_command: [bind-key/0xaaaaf7de90a0] group 74
1596705059.007264 cmdq_append <global>: [bind-key/0xaaaaf7de90a0]
1596705059.007270 yylex_token: bind
1596705059.007275 yylex_token: -N
1596705059.007281 yylex_token: Select window 7
1596705059.007286 yylex_token: 7
1596705059.007292 yylex_token: select-window
1596705059.007298 yylex_token: -t:=7
1596705059.007304 cmd_parse_build_commands: 0 bind
1596705059.007310 cmd_parse_build_commands: argv[0]=-N
1596705059.007315 cmd_parse_build_commands: argv[1]=Select window 7
1596705059.007320 cmd_parse_build_commands: argv[2]=7
1596705059.007332 cmd_parse_build_commands: argv[3]=select-window
1596705059.007337 cmd_parse_build_commands: argv[4]=-t:=7
1596705059.007343 cmd_parse: bind-key: argv[0]=bind
1596705059.007348 cmd_parse: bind-key: argv[1]=-N
1596705059.007353 cmd_parse: bind-key: argv[2]=Select window 7
1596705059.007358 cmd_parse: bind-key: argv[3]=7
1596705059.007363 cmd_parse: bind-key: argv[4]=select-window
1596705059.007369 cmd_parse: bind-key: argv[5]=-t:=7
1596705059.007381 cmd_parse_build_commands: bind-key -N "Select window 7" 7 select-window -t:=7
1596705059.007388 cmdq_get_command: [bind-key/0xaaaaf7de9470] group 77
1596705059.007394 cmdq_append <global>: [bind-key/0xaaaaf7de9470]
1596705059.007404 yylex_token: bind
1596705059.007410 yylex_token: -N
1596705059.007416 yylex_token: Select window 8
1596705059.007421 yylex_token: 8
1596705059.007427 yylex_token: select-window
1596705059.007433 yylex_token: -t:=8
1596705059.007440 cmd_parse_build_commands: 0 bind
1596705059.007446 cmd_parse_build_commands: argv[0]=-N
1596705059.007452 cmd_parse_build_commands: argv[1]=Select window 8
1596705059.007457 cmd_parse_build_commands: argv[2]=8
1596705059.007463 cmd_parse_build_commands: argv[3]=select-window
1596705059.007469 cmd_parse_build_commands: argv[4]=-t:=8
1596705059.007475 cmd_parse: bind-key: argv[0]=bind
1596705059.007480 cmd_parse: bind-key: argv[1]=-N
1596705059.007486 cmd_parse: bind-key: argv[2]=Select window 8
1596705059.007491 cmd_parse: bind-key: argv[3]=8
1596705059.007496 cmd_parse: bind-key: argv[4]=select-window
1596705059.007501 cmd_parse: bind-key: argv[5]=-t:=8
1596705059.007514 cmd_parse_build_commands: bind-key -N "Select window 8" 8 select-window -t:=8
1596705059.007522 cmdq_get_command: [bind-key/0xaaaaf7de9a80] group 80
1596705059.007527 cmdq_append <global>: [bind-key/0xaaaaf7de9a80]
1596705059.007534 yylex_token: bind
1596705059.007539 yylex_token: -N
1596705059.007545 yylex_token: Select window 9
1596705059.007550 yylex_token: 9
1596705059.007556 yylex_token: select-window
1596705059.007561 yylex_token: -t:=9
1596705059.007568 cmd_parse_build_commands: 0 bind
1596705059.007573 cmd_parse_build_commands: argv[0]=-N
1596705059.007579 cmd_parse_build_commands: argv[1]=Select window 9
1596705059.007584 cmd_parse_build_commands: argv[2]=9
1596705059.007590 cmd_parse_build_commands: argv[3]=select-window
1596705059.007595 cmd_parse_build_commands: argv[4]=-t:=9
1596705059.007602 cmd_parse: bind-key: argv[0]=bind
1596705059.007608 cmd_parse: bind-key: argv[1]=-N
1596705059.007613 cmd_parse: bind-key: argv[2]=Select window 9
1596705059.007619 cmd_parse: bind-key: argv[3]=9
1596705059.007624 cmd_parse: bind-key: argv[4]=select-window
1596705059.007630 cmd_parse: bind-key: argv[5]=-t:=9
1596705059.007643 cmd_parse_build_commands: bind-key -N "Select window 9" 9 select-window -t:=9
1596705059.007651 cmdq_get_command: [bind-key/0xaaaaf7de9ee0] group 83
1596705059.007657 cmdq_append <global>: [bind-key/0xaaaaf7de9ee0]
1596705059.007664 yylex_token: bind
1596705059.007670 yylex_token: -N
1596705059.007676 yylex_token: Prompt for a command
1596705059.007681 yylex_token: :
1596705059.007687 yylex_token: command-prompt
1596705059.007695 cmd_parse_build_commands: 0 bind
1596705059.007700 cmd_parse_build_commands: argv[0]=-N
1596705059.007706 cmd_parse_build_commands: argv[1]=Prompt for a command
1596705059.007711 cmd_parse_build_commands: argv[2]=:
1596705059.007716 cmd_parse_build_commands: argv[3]=command-prompt
1596705059.007723 cmd_parse: bind-key: argv[0]=bind
1596705059.007728 cmd_parse: bind-key: argv[1]=-N
1596705059.007733 cmd_parse: bind-key: argv[2]=Prompt for a command
1596705059.007738 cmd_parse: bind-key: argv[3]=:
1596705059.007744 cmd_parse: bind-key: argv[4]=command-prompt
1596705059.007756 cmd_parse_build_commands: bind-key -N "Prompt for a command" : command-prompt
1596705059.007763 cmdq_get_command: [bind-key/0xaaaaf7dea150] group 86
1596705059.007769 cmdq_append <global>: [bind-key/0xaaaaf7dea150]
1596705059.007775 yylex_token: bind
1596705059.007781 yylex_token: -N
1596705059.007793 yylex_token: Move to the previously active pane
1596705059.007806 yylex_token: ;
1596705059.007812 yylex_token: last-pane
1596705059.007819 cmd_parse_build_commands: 0 bind
1596705059.007825 cmd_parse_build_commands: argv[0]=-N
1596705059.007831 cmd_parse_build_commands: argv[1]=Move to the previously active pane
1596705059.007836 cmd_parse_build_commands: argv[2]=;
1596705059.007841 cmd_parse_build_commands: argv[3]=last-pane
1596705059.007847 cmd_parse: bind-key: argv[0]=bind
1596705059.007852 cmd_parse: bind-key: argv[1]=-N
1596705059.007857 cmd_parse: bind-key: argv[2]=Move to the previously active pane
1596705059.007862 cmd_parse: bind-key: argv[3]=;
1596705059.007867 cmd_parse: bind-key: argv[4]=last-pane
1596705059.007880 cmd_parse_build_commands: bind-key -N "Move to the previously active pane" \\; last-pane
1596705059.007886 cmdq_get_command: [bind-key/0xaaaaf7dea7a0] group 89
1596705059.007892 cmdq_append <global>: [bind-key/0xaaaaf7dea7a0]
1596705059.007898 yylex_token: bind
1596705059.007903 yylex_token: -N
1596705059.007911 yylex_token: Choose a paste buffer from a list
1596705059.007916 yylex_token: =
1596705059.007922 yylex_token: choose-buffer
1596705059.007927 yylex_token: -Z
1596705059.007933 cmd_parse_build_commands: 0 bind
1596705059.007939 cmd_parse_build_commands: argv[0]=-N
1596705059.007945 cmd_parse_build_commands: argv[1]=Choose a paste buffer from a list
1596705059.007950 cmd_parse_build_commands: argv[2]==
1596705059.007955 cmd_parse_build_commands: argv[3]=choose-buffer
1596705059.007960 cmd_parse_build_commands: argv[4]=-Z
1596705059.007966 cmd_parse: bind-key: argv[0]=bind
1596705059.007971 cmd_parse: bind-key: argv[1]=-N
1596705059.007976 cmd_parse: bind-key: argv[2]=Choose a paste buffer from a list
1596705059.007981 cmd_parse: bind-key: argv[3]==
1596705059.007986 cmd_parse: bind-key: argv[4]=choose-buffer
1596705059.007991 cmd_parse: bind-key: argv[5]=-Z
1596705059.008005 cmd_parse_build_commands: bind-key -N "Choose a paste buffer from a list" = choose-buffer -Z
1596705059.008012 cmdq_get_command: [bind-key/0xaaaaf7deb1b0] group 92
1596705059.008018 cmdq_append <global>: [bind-key/0xaaaaf7deb1b0]
1596705059.008024 yylex_token: bind
1596705059.008029 yylex_token: -N
1596705059.008035 yylex_token: List key bindings
1596705059.008040 yylex_token: ?
1596705059.008046 yylex_token: list-keys
1596705059.008051 yylex_token: -N
1596705059.008058 cmd_parse_build_commands: 0 bind
1596705059.008063 cmd_parse_build_commands: argv[0]=-N
1596705059.008069 cmd_parse_build_commands: argv[1]=List key bindings
1596705059.008074 cmd_parse_build_commands: argv[2]=?
1596705059.008080 cmd_parse_build_commands: argv[3]=list-keys
1596705059.008085 cmd_parse_build_commands: argv[4]=-N
1596705059.008091 cmd_parse: bind-key: argv[0]=bind
1596705059.008097 cmd_parse: bind-key: argv[1]=-N
1596705059.008103 cmd_parse: bind-key: argv[2]=List key bindings
1596705059.008108 cmd_parse: bind-key: argv[3]=?
1596705059.008113 cmd_parse: bind-key: argv[4]=list-keys
1596705059.008119 cmd_parse: bind-key: argv[5]=-N
1596705059.008132 cmd_parse_build_commands: bind-key -N "List key bindings" ? list-keys -N
1596705059.008139 cmdq_get_command: [bind-key/0xaaaaf7deb7f0] group 95
1596705059.008145 cmdq_append <global>: [bind-key/0xaaaaf7deb7f0]
1596705059.008157 yylex_token: bind
1596705059.008163 yylex_token: -N
1596705059.008169 yylex_token: Choose a client from a list
1596705059.008175 yylex_token: D
1596705059.008181 yylex_token: choose-client
1596705059.008186 yylex_token: -Z
1596705059.008193 cmd_parse_build_commands: 0 bind
1596705059.008198 cmd_parse_build_commands: argv[0]=-N
1596705059.008204 cmd_parse_build_commands: argv[1]=Choose a client from a list
1596705059.008209 cmd_parse_build_commands: argv[2]=D
1596705059.008215 cmd_parse_build_commands: argv[3]=choose-client
1596705059.008220 cmd_parse_build_commands: argv[4]=-Z
1596705059.008226 cmd_parse: bind-key: argv[0]=bind
1596705059.008231 cmd_parse: bind-key: argv[1]=-N
1596705059.008236 cmd_parse: bind-key: argv[2]=Choose a client from a list
1596705059.008241 cmd_parse: bind-key: argv[3]=D
1596705059.008254 cmd_parse: bind-key: argv[4]=choose-client
1596705059.008260 cmd_parse: bind-key: argv[5]=-Z
1596705059.008273 cmd_parse_build_commands: bind-key -N "Choose a client from a list" D choose-client -Z
1596705059.008280 cmdq_get_command: [bind-key/0xaaaaf7debd10] group 98
1596705059.008285 cmdq_append <global>: [bind-key/0xaaaaf7debd10]
1596705059.008292 yylex_token: bind
1596705059.008334 yylex_token: -N
1596705059.008352 yylex_token: Spread panes out evenly
1596705059.008358 yylex_token: E
1596705059.008364 yylex_token: select-layout
1596705059.008369 yylex_token: -E
1596705059.008376 cmd_parse_build_commands: 0 bind
1596705059.008382 cmd_parse_build_commands: argv[0]=-N
1596705059.008387 cmd_parse_build_commands: argv[1]=Spread panes out evenly
1596705059.008393 cmd_parse_build_commands: argv[2]=E
1596705059.008398 cmd_parse_build_commands: argv[3]=select-layout
1596705059.008403 cmd_parse_build_commands: argv[4]=-E
1596705059.008409 cmd_parse: bind-key: argv[0]=bind
1596705059.008414 cmd_parse: bind-key: argv[1]=-N
1596705059.008419 cmd_parse: bind-key: argv[2]=Spread panes out evenly
1596705059.008424 cmd_parse: bind-key: argv[3]=E
1596705059.008430 cmd_parse: bind-key: argv[4]=select-layout
1596705059.008435 cmd_parse: bind-key: argv[5]=-E
1596705059.008447 cmd_parse_build_commands: bind-key -N "Spread panes out evenly" E select-layout -E
1596705059.008455 cmdq_get_command: [bind-key/0xaaaaf7dec340] group 101
1596705059.008460 cmdq_append <global>: [bind-key/0xaaaaf7dec340]
1596705059.008471 yylex_token: bind
1596705059.008477 yylex_token: -N
1596705059.008484 yylex_token: Switch to the last client
1596705059.008489 yylex_token: L
1596705059.008495 yylex_token: switch-client
1596705059.008500 yylex_token: -l
1596705059.008507 cmd_parse_build_commands: 0 bind
1596705059.008512 cmd_parse_build_commands: argv[0]=-N
1596705059.008518 cmd_parse_build_commands: argv[1]=Switch to the last client
1596705059.008523 cmd_parse_build_commands: argv[2]=L
1596705059.008528 cmd_parse_build_commands: argv[3]=switch-client
1596705059.008533 cmd_parse_build_commands: argv[4]=-l
1596705059.008539 cmd_parse: bind-key: argv[0]=bind
1596705059.008544 cmd_parse: bind-key: argv[1]=-N
1596705059.008550 cmd_parse: bind-key: argv[2]=Switch to the last client
1596705059.008555 cmd_parse: bind-key: argv[3]=L
1596705059.008560 cmd_parse: bind-key: argv[4]=switch-client
1596705059.008566 cmd_parse: bind-key: argv[5]=-l
1596705059.008579 cmd_parse_build_commands: bind-key -N "Switch to the last client" L switch-client -l
1596705059.008586 cmdq_get_command: [bind-key/0xaaaaf7decad0] group 104
1596705059.008591 cmdq_append <global>: [bind-key/0xaaaaf7decad0]
1596705059.008598 yylex_token: bind
1596705059.008603 yylex_token: -N
1596705059.008609 yylex_token: Clear the marked pane
1596705059.008614 yylex_token: M
1596705059.008620 yylex_token: select-pane
1596705059.008625 yylex_token: -M
1596705059.008632 cmd_parse_build_commands: 0 bind
1596705059.008638 cmd_parse_build_commands: argv[0]=-N
1596705059.008644 cmd_parse_build_commands: argv[1]=Clear the marked pane
1596705059.008649 cmd_parse_build_commands: argv[2]=M
1596705059.008654 cmd_parse_build_commands: argv[3]=select-pane
1596705059.008660 cmd_parse_build_commands: argv[4]=-M
1596705059.008665 cmd_parse: bind-key: argv[0]=bind
1596705059.008671 cmd_parse: bind-key: argv[1]=-N
1596705059.008676 cmd_parse: bind-key: argv[2]=Clear the marked pane
1596705059.008681 cmd_parse: bind-key: argv[3]=M
1596705059.008687 cmd_parse: bind-key: argv[4]=select-pane
1596705059.008692 cmd_parse: bind-key: argv[5]=-M
1596705059.008705 cmd_parse_build_commands: bind-key -N "Clear the marked pane" M select-pane -M
1596705059.008713 cmdq_get_command: [bind-key/0xaaaaf7ded200] group 107
1596705059.008719 cmdq_append <global>: [bind-key/0xaaaaf7ded200]
1596705059.008725 yylex_token: bind
1596705059.008731 yylex_token: -N
1596705059.008737 yylex_token: Enter copy mode
1596705059.008741 yylex_token: [
1596705059.008747 yylex_token: copy-mode
1596705059.008754 cmd_parse_build_commands: 0 bind
1596705059.008766 cmd_parse_build_commands: argv[0]=-N
1596705059.008772 cmd_parse_build_commands: argv[1]=Enter copy mode
1596705059.008777 cmd_parse_build_commands: argv[2]=[
1596705059.008782 cmd_parse_build_commands: argv[3]=copy-mode
1596705059.008788 cmd_parse: bind-key: argv[0]=bind
1596705059.008806 cmd_parse: bind-key: argv[1]=-N
1596705059.008816 cmd_parse: bind-key: argv[2]=Enter copy mode
1596705059.008822 cmd_parse: bind-key: argv[3]=[
1596705059.008828 cmd_parse: bind-key: argv[4]=copy-mode
1596705059.008841 cmd_parse_build_commands: bind-key -N "Enter copy mode" [ copy-mode
1596705059.008849 cmdq_get_command: [bind-key/0xaaaaf7ded660] group 110
1596705059.008855 cmdq_append <global>: [bind-key/0xaaaaf7ded660]
1596705059.008867 yylex_token: bind
1596705059.008873 yylex_token: -N
1596705059.008881 yylex_token: Paste the most recent paste buffer
1596705059.008886 yylex_token: ]
1596705059.008892 yylex_token: paste-buffer
1596705059.008899 cmd_parse_build_commands: 0 bind
1596705059.008904 cmd_parse_build_commands: argv[0]=-N
1596705059.008910 cmd_parse_build_commands: argv[1]=Paste the most recent paste buffer
1596705059.008915 cmd_parse_build_commands: argv[2]=]
1596705059.008920 cmd_parse_build_commands: argv[3]=paste-buffer
1596705059.008926 cmd_parse: bind-key: argv[0]=bind
1596705059.008931 cmd_parse: bind-key: argv[1]=-N
1596705059.008937 cmd_parse: bind-key: argv[2]=Paste the most recent paste buffer
1596705059.008942 cmd_parse: bind-key: argv[3]=]
1596705059.008947 cmd_parse: bind-key: argv[4]=paste-buffer
1596705059.008959 cmd_parse_build_commands: bind-key -N "Paste the most recent paste buffer" ] paste-buffer
1596705059.008966 cmdq_get_command: [bind-key/0xaaaaf7deda70] group 113
1596705059.008972 cmdq_append <global>: [bind-key/0xaaaaf7deda70]
1596705059.008978 yylex_token: bind
1596705059.008983 yylex_token: -N
1596705059.008990 yylex_token: Create a new window
1596705059.008995 yylex_token: c
1596705059.009000 yylex_token: new-window
1596705059.009007 cmd_parse_build_commands: 0 bind
1596705059.009013 cmd_parse_build_commands: argv[0]=-N
1596705059.009018 cmd_parse_build_commands: argv[1]=Create a new window
1596705059.009023 cmd_parse_build_commands: argv[2]=c
1596705059.009028 cmd_parse_build_commands: argv[3]=new-window
1596705059.009034 cmd_parse: bind-key: argv[0]=bind
1596705059.009040 cmd_parse: bind-key: argv[1]=-N
1596705059.009045 cmd_parse: bind-key: argv[2]=Create a new window
1596705059.009050 cmd_parse: bind-key: argv[3]=c
1596705059.009055 cmd_parse: bind-key: argv[4]=new-window
1596705059.009067 cmd_parse_build_commands: bind-key -N "Create a new window" c new-window
1596705059.009074 cmdq_get_command: [bind-key/0xaaaaf7dee020] group 116
1596705059.009080 cmdq_append <global>: [bind-key/0xaaaaf7dee020]
1596705059.009086 yylex_token: bind
1596705059.009091 yylex_token: -N
1596705059.009098 yylex_token: Detach the current client
1596705059.009103 yylex_token: d
1596705059.009109 yylex_token: detach-client
1596705059.009116 cmd_parse_build_commands: 0 bind
1596705059.009121 cmd_parse_build_commands: argv[0]=-N
1596705059.009127 cmd_parse_build_commands: argv[1]=Detach the current client
1596705059.009132 cmd_parse_build_commands: argv[2]=d
1596705059.009138 cmd_parse_build_commands: argv[3]=detach-client
1596705059.009144 cmd_parse: bind-key: argv[0]=bind
1596705059.009149 cmd_parse: bind-key: argv[1]=-N
1596705059.009154 cmd_parse: bind-key: argv[2]=Detach the current client
1596705059.009159 cmd_parse: bind-key: argv[3]=d
1596705059.009165 cmd_parse: bind-key: argv[4]=detach-client
1596705059.009177 cmd_parse_build_commands: bind-key -N "Detach the current client" d detach-client
1596705059.009184 cmdq_get_command: [bind-key/0xaaaaf7dee3a0] group 119
1596705059.009189 cmdq_append <global>: [bind-key/0xaaaaf7dee3a0]
1596705059.009200 yylex_token: bind
1596705059.009206 yylex_token: -N
1596705059.009212 yylex_token: Search for a pane
1596705059.009217 yylex_token: f
1596705059.009223 yylex_token: command-prompt
1596705059.009230 yylex_token: find-window -Z -- '%%'
1596705059.009243 cmd_parse_build_commands: 0 bind
1596705059.009248 cmd_parse_build_commands: argv[0]=-N
1596705059.009254 cmd_parse_build_commands: argv[1]=Search for a pane
1596705059.009259 cmd_parse_build_commands: argv[2]=f
1596705059.009264 cmd_parse_build_commands: argv[3]=command-prompt
1596705059.009270 cmd_parse_build_commands: argv[4]=find-window -Z -- '%%'
1596705059.009276 cmd_parse: bind-key: argv[0]=bind
1596705059.009281 cmd_parse: bind-key: argv[1]=-N
1596705059.009286 cmd_parse: bind-key: argv[2]=Search for a pane
1596705059.009291 cmd_parse: bind-key: argv[3]=f
1596705059.009296 cmd_parse: bind-key: argv[4]=command-prompt
1596705059.009302 cmd_parse: bind-key: argv[5]=find-window -Z -- '%%'
1596705059.009316 cmd_parse_build_commands: bind-key -N "Search for a pane" f command-prompt "find-window -Z -- '%%'"
1596705059.009323 cmdq_get_command: [bind-key/0xaaaaf7dee8f0] group 122
1596705059.009329 cmdq_append <global>: [bind-key/0xaaaaf7dee8f0]
1596705059.009335 yylex_token: bind
1596705059.009340 yylex_token: -N
1596705059.009347 yylex_token: Display window information
1596705059.009352 yylex_token: i
1596705059.009358 yylex_token: display-message
1596705059.009365 cmd_parse_build_commands: 0 bind
1596705059.009370 cmd_parse_build_commands: argv[0]=-N
1596705059.009376 cmd_parse_build_commands: argv[1]=Display window information
1596705059.009381 cmd_parse_build_commands: argv[2]=i
1596705059.009386 cmd_parse_build_commands: argv[3]=display-message
1596705059.009392 cmd_parse: bind-key: argv[0]=bind
1596705059.009397 cmd_parse: bind-key: argv[1]=-N
1596705059.009403 cmd_parse: bind-key: argv[2]=Display window information
1596705059.009408 cmd_parse: bind-key: argv[3]=i
1596705059.009413 cmd_parse: bind-key: argv[4]=display-message
1596705059.009424 cmd_parse_build_commands: bind-key -N "Display window information" i display-message
1596705059.009432 cmdq_get_command: [bind-key/0xaaaaf7deecf0] group 125
1596705059.009437 cmdq_append <global>: [bind-key/0xaaaaf7deecf0]
1596705059.009444 yylex_token: bind
1596705059.009449 yylex_token: -N
1596705059.009456 yylex_token: Select the previously current window
1596705059.009462 yylex_token: l
1596705059.009467 yylex_token: last-window
1596705059.009474 cmd_parse_build_commands: 0 bind
1596705059.009480 cmd_parse_build_commands: argv[0]=-N
1596705059.009486 cmd_parse_build_commands: argv[1]=Select the previously current window
1596705059.009491 cmd_parse_build_commands: argv[2]=l
1596705059.009496 cmd_parse_build_commands: argv[3]=last-window
1596705059.009502 cmd_parse: bind-key: argv[0]=bind
1596705059.009507 cmd_parse: bind-key: argv[1]=-N
1596705059.009513 cmd_parse: bind-key: argv[2]=Select the previously current window
1596705059.009518 cmd_parse: bind-key: argv[3]=l
1596705059.009523 cmd_parse: bind-key: argv[4]=last-window
1596705059.009535 cmd_parse_build_commands: bind-key -N "Select the previously current window" l last-window
1596705059.009542 cmdq_get_command: [bind-key/0xaaaaf7def080] group 128
1596705059.009548 cmdq_append <global>: [bind-key/0xaaaaf7def080]
1596705059.009554 yylex_token: bind
1596705059.009559 yylex_token: -N
1596705059.009566 yylex_token: Toggle the marked pane
1596705059.009571 yylex_token: m
1596705059.009576 yylex_token: select-pane
1596705059.009581 yylex_token: -m
1596705059.009588 cmd_parse_build_commands: 0 bind
1596705059.009594 cmd_parse_build_commands: argv[0]=-N
1596705059.009599 cmd_parse_build_commands: argv[1]=Toggle the marked pane
1596705059.009604 cmd_parse_build_commands: argv[2]=m
1596705059.009609 cmd_parse_build_commands: argv[3]=select-pane
1596705059.009615 cmd_parse_build_commands: argv[4]=-m
1596705059.009620 cmd_parse: bind-key: argv[0]=bind
1596705059.009625 cmd_parse: bind-key: argv[1]=-N
1596705059.009631 cmd_parse: bind-key: argv[2]=Toggle the marked pane
1596705059.009636 cmd_parse: bind-key: argv[3]=m
1596705059.009641 cmd_parse: bind-key: argv[4]=select-pane
1596705059.009646 cmd_parse: bind-key: argv[5]=-m
1596705059.009658 cmd_parse_build_commands: bind-key -N "Toggle the marked pane" m select-pane -m
1596705059.009675 cmdq_get_command: [bind-key/0xaaaaf7def7f0] group 131
1596705059.009681 cmdq_append <global>: [bind-key/0xaaaaf7def7f0]
1596705059.009692 yylex_token: bind
1596705059.009698 yylex_token: -N
1596705059.009704 yylex_token: Select the next window
1596705059.009709 yylex_token: n
1596705059.009715 yylex_token: next-window
1596705059.009721 cmd_parse_build_commands: 0 bind
1596705059.009727 cmd_parse_build_commands: argv[0]=-N
1596705059.009733 cmd_parse_build_commands: argv[1]=Select the next window
1596705059.009738 cmd_parse_build_commands: argv[2]=n
1596705059.009743 cmd_parse_build_commands: argv[3]=next-window
1596705059.009748 cmd_parse: bind-key: argv[0]=bind
1596705059.009754 cmd_parse: bind-key: argv[1]=-N
1596705059.009759 cmd_parse: bind-key: argv[2]=Select the next window
1596705059.009764 cmd_parse: bind-key: argv[3]=n
1596705059.009769 cmd_parse: bind-key: argv[4]=next-window
1596705059.009781 cmd_parse_build_commands: bind-key -N "Select the next window" n next-window
1596705059.009788 cmdq_get_command: [bind-key/0xaaaaf7defb50] group 134
1596705059.009794 cmdq_append <global>: [bind-key/0xaaaaf7defb50]
1596705059.009800 yylex_token: bind
1596705059.009805 yylex_token: -N
1596705059.009811 yylex_token: Select the next pane
1596705059.009817 yylex_token: o
1596705059.009822 yylex_token: select-pane
1596705059.009828 yylex_token: -t:.+
1596705059.009834 cmd_parse_build_commands: 0 bind
1596705059.009840 cmd_parse_build_commands: argv[0]=-N
1596705059.009845 cmd_parse_build_commands: argv[1]=Select the next pane
1596705059.009850 cmd_parse_build_commands: argv[2]=o
1596705059.009855 cmd_parse_build_commands: argv[3]=select-pane
1596705059.009860 cmd_parse_build_commands: argv[4]=-t:.+
1596705059.009866 cmd_parse: bind-key: argv[0]=bind
1596705059.009871 cmd_parse: bind-key: argv[1]=-N
1596705059.009877 cmd_parse: bind-key: argv[2]=Select the next pane
1596705059.009882 cmd_parse: bind-key: argv[3]=o
1596705059.009887 cmd_parse: bind-key: argv[4]=select-pane
1596705059.009892 cmd_parse: bind-key: argv[5]=-t:.+
1596705059.009905 cmd_parse_build_commands: bind-key -N "Select the next pane" o select-pane -t:.+
1596705059.009912 cmdq_get_command: [bind-key/0xaaaaf7deffe0] group 137
1596705059.009917 cmdq_append <global>: [bind-key/0xaaaaf7deffe0]
1596705059.009924 yylex_token: bind
1596705059.009930 yylex_token: -N
1596705059.009936 yylex_token: Select the previous pane
1596705059.009941 yylex_token: p
1596705059.009947 yylex_token: previous-window
1596705059.009954 cmd_parse_build_commands: 0 bind
1596705059.009959 cmd_parse_build_commands: argv[0]=-N
1596705059.009965 cmd_parse_build_commands: argv[1]=Select the previous pane
1596705059.009970 cmd_parse_build_commands: argv[2]=p
1596705059.009976 cmd_parse_build_commands: argv[3]=previous-window
1596705059.009981 cmd_parse: bind-key: argv[0]=bind
1596705059.009986 cmd_parse: bind-key: argv[1]=-N
1596705059.009992 cmd_parse: bind-key: argv[2]=Select the previous pane
1596705059.009997 cmd_parse: bind-key: argv[3]=p
1596705059.010003 cmd_parse: bind-key: argv[4]=previous-window
1596705059.010014 cmd_parse_build_commands: bind-key -N "Select the previous pane" p previous-window
1596705059.010022 cmdq_get_command: [bind-key/0xaaaaf7df0310] group 140
1596705059.010027 cmdq_append <global>: [bind-key/0xaaaaf7df0310]
1596705059.010074 yylex_token: bind
1596705059.010081 yylex_token: -N
1596705059.010088 yylex_token: Display pane numbers
1596705059.010093 yylex_token: q
1596705059.010099 yylex_token: display-panes
1596705059.010115 cmd_parse_build_commands: 0 bind
1596705059.010122 cmd_parse_build_commands: argv[0]=-N
1596705059.010127 cmd_parse_build_commands: argv[1]=Display pane numbers
1596705059.010133 cmd_parse_build_commands: argv[2]=q
1596705059.010138 cmd_parse_build_commands: argv[3]=display-panes
1596705059.010144 cmd_parse: bind-key: argv[0]=bind
1596705059.010150 cmd_parse: bind-key: argv[1]=-N
1596705059.010156 cmd_parse: bind-key: argv[2]=Display pane numbers
1596705059.010161 cmd_parse: bind-key: argv[3]=q
1596705059.010166 cmd_parse: bind-key: argv[4]=display-panes
1596705059.010185 cmd_parse_build_commands: bind-key -N "Display pane numbers" q display-panes
1596705059.010193 cmdq_get_command: [bind-key/0xaaaaf7df0400] group 143
1596705059.010199 cmdq_append <global>: [bind-key/0xaaaaf7df0400]
1596705059.010205 yylex_token: bind
1596705059.010210 yylex_token: -N
1596705059.010217 yylex_token: Redraw the current client
1596705059.010222 yylex_token: r
1596705059.010228 yylex_token: refresh-client
1596705059.010235 cmd_parse_build_commands: 0 bind
1596705059.010241 cmd_parse_build_commands: argv[0]=-N
1596705059.010247 cmd_parse_build_commands: argv[1]=Redraw the current client
1596705059.010252 cmd_parse_build_commands: argv[2]=r
1596705059.010258 cmd_parse_build_commands: argv[3]=refresh-client
1596705059.010264 cmd_parse: bind-key: argv[0]=bind
1596705059.010269 cmd_parse: bind-key: argv[1]=-N
1596705059.010274 cmd_parse: bind-key: argv[2]=Redraw the current client
1596705059.010280 cmd_parse: bind-key: argv[3]=r
1596705059.010285 cmd_parse: bind-key: argv[4]=refresh-client
1596705059.010297 cmd_parse_build_commands: bind-key -N "Redraw the current client" r refresh-client
1596705059.010304 cmdq_get_command: [bind-key/0xaaaaf7df0940] group 146
1596705059.010310 cmdq_append <global>: [bind-key/0xaaaaf7df0940]
1596705059.010316 yylex_token: bind
1596705059.010321 yylex_token: -N
1596705059.010328 yylex_token: Choose a session from a list
1596705059.010333 yylex_token: s
1596705059.010339 yylex_token: choose-tree
1596705059.010344 yylex_token: -Zs
1596705059.010351 cmd_parse_build_commands: 0 bind
1596705059.010357 cmd_parse_build_commands: argv[0]=-N
1596705059.010363 cmd_parse_build_commands: argv[1]=Choose a session from a list
1596705059.010368 cmd_parse_build_commands: argv[2]=s
1596705059.010373 cmd_parse_build_commands: argv[3]=choose-tree
1596705059.010378 cmd_parse_build_commands: argv[4]=-Zs
1596705059.010384 cmd_parse: bind-key: argv[0]=bind
1596705059.010389 cmd_parse: bind-key: argv[1]=-N
1596705059.010395 cmd_parse: bind-key: argv[2]=Choose a session from a list
1596705059.010400 cmd_parse: bind-key: argv[3]=s
1596705059.010405 cmd_parse: bind-key: argv[4]=choose-tree
1596705059.010410 cmd_parse: bind-key: argv[5]=-Zs
1596705059.010423 cmd_parse_build_commands: bind-key -N "Choose a session from a list" s choose-tree -Zs
1596705059.010430 cmdq_get_command: [bind-key/0xaaaaf7df1000] group 149
1596705059.010436 cmdq_append <global>: [bind-key/0xaaaaf7df1000]
1596705059.010442 yylex_token: bind
1596705059.010447 yylex_token: -N
1596705059.010453 yylex_token: Show a clock
1596705059.010458 yylex_token: t
1596705059.010463 yylex_token: clock-mode
1596705059.010471 cmd_parse_build_commands: 0 bind
1596705059.010477 cmd_parse_build_commands: argv[0]=-N
1596705059.010483 cmd_parse_build_commands: argv[1]=Show a clock
1596705059.010488 cmd_parse_build_commands: argv[2]=t
1596705059.010493 cmd_parse_build_commands: argv[3]=clock-mode
1596705059.010499 cmd_parse: bind-key: argv[0]=bind
1596705059.010505 cmd_parse: bind-key: argv[1]=-N
1596705059.010511 cmd_parse: bind-key: argv[2]=Show a clock
1596705059.010517 cmd_parse: bind-key: argv[3]=t