-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.xml
4336 lines (2093 loc) · 205 KB
/
search.xml
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
<?xml version="1.0" encoding="utf-8"?>
<search>
<entry>
<title>WindTerm - Tmux Integration</title>
<link href="/2025/01/05/tmux-integration/"/>
<url>/2025/01/05/tmux-integration/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p><code>WindTerm</code> offers seamless <code>Tmux Integration</code>, making it easier and more efficient for you to work with <code>tmux</code>. With this integration, tmux sessions, windows, and panes are mapped and displayed in the native user interface. All commonly used tmux features are fully supported, creating a near-perfect fusion between tmux and <code>WindTerm</code>.</p><p>Moreover, you can not only leverage the full power of tmux but also take advantage of <code>WindTerm</code>‘s advanced features, such as syntax highlighting, <a href="/2020/01/22/search-and-mark/" title="WindTerm - Search And Mark">search and mark</a>, <a href="/tags/highlight-text/">highlight text</a>, <a href="/tags/trigger/">triggers</a>, <a href="/tags/onekey/">OneKey</a> and so on. This deep integration delivers an unparalleled <code>tmux</code> experience, streamlining your workflow and boosting productivity like never before.</p><h1 id="Usage"><a href="#Usage" class="headerlink" title="Usage"></a>Usage</h1><p>You can use tmux commands as you normally would. To enter <code>tmux integration</code> mode, simply add <code>-CC</code>. For example:</p><ul><li>tmux -CC</li><li>tmux -CC attach</li></ul><p>Exiting <code>tmux integration</code> mode is just as easy, simply press <code>Enter</code> in the <code>tmux</code> tab. For further information, please consult the usage instructions for each feature below.</p><ul><li><a href="/2025/01/05/tmux_common-keyboard-shortcuts/" title="WindTerm - Tmux Integration / Common Keyboard Shortcuts">Common Shortcut Keys</a></li><li><a href="/2025/01/05/tmux_attach-session/" title="WindTerm - Tmux Integration / Attach Session">Attach Session</a></li><li><a href="/2025/01/05/tmux_detach-session/" title="WindTerm - Tmux Integration / Detach Session">Detach Session</a></li><li><a href="/2025/01/05/tmux_execute-tmux-command/" title="WindTerm - Tmux Integration / Execute Tmux Command">Execute Tmux Command</a></li><li><a href="/2025/01/05/tmux_kill-pane/" title="WindTerm - Tmux Integration / Kill Pane">Kill Pane</a></li><li><a href="/2025/01/05/tmux_kill-window/" title="WindTerm - Tmux Integration / Kill Window">Kill Window</a></li><li><a href="/2025/01/05/tmux_kill-session/" title="WindTerm - Tmux Integration / Kill Session">Kill Session</a></li><li><a href="/2025/01/05/tmux_move-pane-to-new-window/" title="WindTerm - Tmux Integration / Move Pane To New Window">Move Pane To New Window</a></li><li><a href="/2025/01/05/tmux_new-window/" title="WindTerm - Tmux Integration / New Window">New Window</a></li><li><a href="/2025/01/05/tmux_rename-pane/" title="WindTerm - Tmux Integration / Rename Pane">Rename Pane</a></li><li><a href="/2025/01/05/tmux_rename-window/" title="WindTerm - Tmux Integration / Rename Window">Rename Window</a></li><li><a href="/2025/01/05/tmux_rename-session/" title="WindTerm - Tmux Integration / Rename Session">Rename Session</a></li><li><a href="/2025/01/05/tmux_resize-pane/" title="WindTerm - Tmux Integration / Resize Pane">Resize Pane</a></li><li><a href="/2025/01/05/tmux_select-layout/" title="WindTerm - Tmux Integration / Select Layout">Select Layout</a></li><li><a href="/2025/01/05/tmux_select-pane/" title="WindTerm - Tmux Integration / Select Pane">Select Pane</a></li><li><a href="/2025/01/05/tmux_select-window/" title="WindTerm - Tmux Integration / Select Window">Select Window</a></li><li><a href="/2025/01/05/tmux_split-pane/" title="WindTerm - Tmux Integration / Split Pane">Split Pane</a></li><li><a href="/2025/01/05/tmux_swap-pane/" title="WindTerm - Tmux Integration / Swap Pane">Swap Pane</a></li><li><a href="/2025/01/05/tmux_swap-window/" title="WindTerm - Tmux Integration / Swap Window">Swap Window</a></li><li><a href="/2025/01/05/tmux_synchronize-panes/" title="WindTerm - Tmux Integration / Synchronize Panes">Synchronize Panes</a></li><li><a href="/2025/01/05/tmux_toggle-pane-zoom/" title="WindTerm - Tmux Integration / Toggle Pane Zoom">Toggle Pane Zoom</a></li></ul>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Common Keyboard Shortcuts</title>
<link href="/2025/01/05/tmux_common-keyboard-shortcuts/"/>
<url>/2025/01/05/tmux_common-keyboard-shortcuts/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>The keyboard shortcuts in <code>tmux integration</code> mode allow you to easily select panes, select windows, split panes, and more. The shortcuts are designed to align with standard tmux keybindings as much as possible. For instance, to zoom a pane, which is usually <code>ctrl+b Z</code> in tmux, you just press <code>alt+Z</code> here, making it intuitive and easy to recall.</p><table><thead><tr><th>Shortcut</th><th>Action</th></tr></thead><tbody><tr><td>Alt + B</td><td>Show <code>Mux/Tmux</code> Command Palette</td></tr><tr><td>Alt + X</td><td>Close the current pane</td></tr><tr><td>Alt + Z</td><td>Zoom the current pane</td></tr><tr><td>Alt + Left Arrow</td><td>Select the left pane</td></tr><tr><td>Alt + Right Arrow</td><td>Select the right pane</td></tr><tr><td>Alt + Up Arrow</td><td>Select the pane above</td></tr><tr><td>Alt + Down Arrow</td><td>Select the pane below</td></tr><tr><td>Alt + [</td><td>Select the previous window</td></tr><tr><td>Alt + ]</td><td>Select the next winodw</td></tr><tr><td>Alt + -</td><td>Split pane right</td></tr><tr><td>Alt + Shift + -</td><td>Split pane left</td></tr><tr><td>Alt + |</td><td>Split pane down</td></tr><tr><td>Alt + Shift + |</td><td>Split pane up</td></tr><tr><td>Ctrl + Shift + A</td><td>Select all text</td></tr><tr><td>Ctrl + Shift + C</td><td>Copy selected text</td></tr><tr><td>Ctrl + Shift + V</td><td>Paste text</td></tr><tr><td>Ctrl + Shift + F</td><td>Search text</td></tr></tbody></table>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> keyboard </tag>
<tag> shortcuts </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Attach Session</title>
<link href="/2025/01/05/tmux_attach-session/"/>
<url>/2025/01/05/tmux_attach-session/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can enter <code>tmux integration</code> mode and attach to a specific session using the command <code>tmux -CC attach -t <session_name></code>.</p><p>Once inside <code>tmux integration</code> mode, running <code>Tmux: Attach Session</code> within the <code>Mux/Tmux Command Palette</code> allows you to switch to a different session too.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_attach_session.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> session </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Detach Session</title>
<link href="/2025/01/05/tmux_detach-session/"/>
<url>/2025/01/05/tmux_detach-session/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can detach a session in two ways:</p><ul><li>Pressing <code>Enter</code> in the <code>tmux</code> tab.</li><li>Running <code>Tmux: Detach Session</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_detach_session.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> session </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Execute Tmux Command</title>
<link href="/2025/01/05/tmux_execute-tmux-command/"/>
<url>/2025/01/05/tmux_execute-tmux-command/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can execute any tmux command by running <code>Tmux: Execute Tmux Command</code> within the <code>Mux/Tmux Command Palette</code>. However, this should rarely be necessary, as <code>WindTerm</code> provides more convenient interactions for almost all common tmux commands.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_execute_tmux_command.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> tmux </tag>
<tag> command </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Kill Pane</title>
<link href="/2025/01/05/tmux_kill-pane/"/>
<url>/2025/01/05/tmux_kill-pane/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can kill a pane in three ways:</p><ul><li>Click the pane’s close button.</li><li>Press <code>Alt + X</code> in the current pane. </li><li>Running <code>Tmux: Kill Pane</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_kill_pane.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Kill Window</title>
<link href="/2025/01/05/tmux_kill-window/"/>
<url>/2025/01/05/tmux_kill-window/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can kill a window in two ways:</p><ul><li>Click the window’s close button.</li><li>Running <code>Tmux: Kill Window</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_kill_window.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> tmux </tag>
<tag> window </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Kill Session</title>
<link href="/2025/01/05/tmux_kill-session/"/>
<url>/2025/01/05/tmux_kill-session/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can kill a session by running <code>Tmux: Kill Session</code> within the <code>Mux/Tmux Command Palette</code>.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_kill_session.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> session </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Move Pane To New Window</title>
<link href="/2025/01/05/tmux_move-pane-to-new-window/"/>
<url>/2025/01/05/tmux_move-pane-to-new-window/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can move a pane to new window in two ways:</p><ul><li>Perform the <code>Move Pane To New Window</code> action from the pane menu.</li><li>Running <code>Mux: Move Pane To New Window</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_move_pane_to_new_window.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> tmux </tag>
<tag> window </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / New Window</title>
<link href="/2025/01/05/tmux_new-window/"/>
<url>/2025/01/05/tmux_new-window/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can new window in two ways:</p><ul><li>Click the “New Window” button in the tab bar.</li><li>Running <code>Mux: New Window</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_new_window.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> tmux </tag>
<tag> window </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Rename Pane</title>
<link href="/2025/01/05/tmux_rename-pane/"/>
<url>/2025/01/05/tmux_rename-pane/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>Good pane names make them easier to remember and use. You can rename a pane in the following two ways:</p><ul><li>Double-click the tab text corresponding to the pane.</li><li>Running <code>Mux: Rename Pane</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_rename_pane.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> tmux </tag>
<tag> rename </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Rename Window</title>
<link href="/2025/01/05/tmux_rename-window/"/>
<url>/2025/01/05/tmux_rename-window/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>Good window names make them easier to remember and use. You can rename a window in the following two ways:</p><ul><li>Double-click the tab text corresponding to the window.</li><li>Running <code>Mux: Rename Window</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_rename_window.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> tmux </tag>
<tag> window </tag>
<tag> rename </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Rename Session</title>
<link href="/2025/01/05/tmux_rename-session/"/>
<url>/2025/01/05/tmux_rename-session/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>Good session names make them easier to remember and use. You can rename a session by running <code>Mux: Rename session</code> within the <code>Mux/Tmux Command Palette</code>.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_rename_session.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> session </tag>
<tag> tmux </tag>
<tag> rename </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Resize Pane</title>
<link href="/2025/01/05/tmux_resize-pane/"/>
<url>/2025/01/05/tmux_resize-pane/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>Resizing panes in <code>WindTerm</code> is extremely easy: just drag the divider between the panes. Of course, you can also run <code>Mux: Resize pane</code> within the <code>Mux/Tmux Command Palette</code> for more precise resizing.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_resize_pane.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> tmux </tag>
<tag> resize </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Select Layout</title>
<link href="/2025/01/05/tmux_select-layout/"/>
<url>/2025/01/05/tmux_select-layout/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can quickly switch layouts by running <code>Mux: Swicth Layout</code> within the <code>Mux/Tmux Command Palette</code>. There are seven layouts available:</p><ul><li>Even horizontal</li><li>Even vertical</li><li>Main horizontal</li><li>Main horizontal mirrored</li><li>Main vertical</li><li>Main vertical mirrored</li><li>Tiled</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_select_layout.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> tmux </tag>
<tag> layout </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Select Pane</title>
<link href="/2025/01/05/tmux_select-pane/"/>
<url>/2025/01/05/tmux_select-pane/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can activate any pane by clicking on it. If you prefer not to use the mouse, the shortcut <code>Alt + Left/Right/Up/Down Arrow</code> is the most convenient option. Of course, you can also run <code>Mux: Select Pane Left/Right/Above/Below</code> or <code>Mux: Select Pane</code> within the <code>Mux/Tmux Command Palette</code> to quickly select a pane, even in another window.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_select_pane.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Select Window</title>
<link href="/2025/01/05/tmux_select-window/"/>
<url>/2025/01/05/tmux_select-window/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can activate any window by clicking on it. If you prefer not to use the mouse, the shortcut <code>Alt + [</code> and <code>Alt + ]</code> is the most convenient option. Of course, you can also run <code>Mux: Select Window</code> within the <code>Mux/Tmux Command Palette</code> to quickly select a window.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_select_window.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> tmux </tag>
<tag> window </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Split Pane</title>
<link href="/2025/01/05/tmux_split-pane/"/>
<url>/2025/01/05/tmux_split-pane/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can split a pane in the following three ways:</p><ul><li>Perform the <code>Split Pane Left/Right/Up/Down</code> action from the pane menu.</li><li>Press <code>Alt + -</code> or <code>Alt + |</code> in the current pane. </li><li>Running <code>Mux: Split Pane Left/Right/Up/Down</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_split_pane.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> split </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Swap Pane</title>
<link href="/2025/01/05/tmux_swap-pane/"/>
<url>/2025/01/05/tmux_swap-pane/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can swap the positions of two panes by running <code>Mux: Swap Pane</code> within the <code>Mux/Tmux Command Palette</code>.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_swap_pane.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> tmux </tag>
<tag> swap </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Swap Window</title>
<link href="/2025/01/05/tmux_swap-window/"/>
<url>/2025/01/05/tmux_swap-window/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can swap the positions of two windows by running <code>Mux: Swap Window</code> within the <code>Mux/Tmux Command Palette</code>.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_swap_window.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> tmux </tag>
<tag> window </tag>
<tag> swap </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Synchronize Panes</title>
<link href="/2025/01/05/tmux_synchronize-panes/"/>
<url>/2025/01/05/tmux_synchronize-panes/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can toggle synchronized input for all panes in the current window by running <code>Tmux: Synchronize Panes</code> within the <code>Mux/Tmux Command Palette</code>.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_synchronize_panes.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> tmux </tag>
<tag> synchronize </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Tmux Integration / Toggle Pane Zoom</title>
<link href="/2025/01/05/tmux_toggle-pane-zoom/"/>
<url>/2025/01/05/tmux_toggle-pane-zoom/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>You can zoom a pane in the following four ways:</p><ul><li>Double-click the empty space in the pane’s title bar.</li><li>Perform the <code>Toggle Pane Zoom</code> action from the pane menu.</li><li>Press <code>Alt + Z</code> in the current pane. </li><li>Running <code>Mux: Toggle Pane Zoom</code> within the <code>Mux/Tmux Command Palette</code>.</li></ul><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/tmux_toggle_pane_zoom.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pane </tag>
<tag> split </tag>
<tag> tmux </tag>
</tags>
</entry>
<entry>
<title>WindTerm - OneKey / Autofill</title>
<link href="/2024/01/20/onekey_autofill/"/>
<url>/2024/01/20/onekey_autofill/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p><code>OneKey autofill</code> supports the automatic filling in of login credentials, such as usernames and passwords, streamlining the process of logging in to accounts by eliminating the need to manually enter credentials each time. The <code>usernames</code> and <code>passwords</code> defined in both <code>SSH OneKey</code> and <code>Account OneKey</code> support automatic filling.</p><blockquote><p><strong>Security warning</strong></p><p>Please use <code>OneKey autofill</code> in a <strong>SECURE</strong> environment. Even though <code>OneKeys</code> are encrypted, when displaying the autofill list and sending, the encrypted <code>OneKeys</code> will be decrypted. Malicious individuals can also steal <code>usernames</code> and <code>passwords</code> by impersonating logins.</p></blockquote><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/onekey_autofill.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> onekey </tag>
<tag> autofill </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Rainbow Brackets</title>
<link href="/2024/01/20/rainbow_brackets/"/>
<url>/2024/01/20/rainbow_brackets/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>WindTerm supports assigning a unique color to each pair of opening and closing brackets <code>(), [], {} and any customed delimiters</code> to make it easy to identify them and their scope. <code>Rainbow brackets</code> can improve text readability and reduce the likelihood of errors related to mismatched brackets and especially helpful when dealing with complex or nested code structures. Quick selecting the matching pairs via double-clicking or shortcuts is available.</p><h1 id="Rainbow-brackets"><a href="#Rainbow-brackets" class="headerlink" title="Rainbow brackets"></a>Rainbow brackets</h1><p><img src="/img/rainbow_brackets.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> pair </tag>
<tag> brackets </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Performance / Terminal</title>
<link href="/2023/11/15/benchmark-terminal/"/>
<url>/2023/11/15/benchmark-terminal/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>WindTerm has extremely high performance and low memory consumption.</p><p>Especially when it comes to commands with a massive amount of text output, WindTerm outperforms the majority of terminals in terms of parsing speed, display speed, and memory usage. This makes your work more efficient, giving you more time to enjoy your life.</p><h1 id="Benchmark"><a href="#Benchmark" class="headerlink" title="Benchmark"></a>Benchmark</h1><p>The testing environment used for testing is as follows:<br><code>Hardware: 2.3 GHz Intel Core i5 and 8GB Memory</code><br><code>Software: WSL(Ubuntu 18.04.2), Windows 10</code></p><table><thead><tr><th align="center">Application</th><th align="center">Version</th><th align="center">Release Data</th></tr></thead><tbody><tr><td align="center">WindTerm</td><td align="center">v1.6.0 Prerelease 3</td><td align="center">2023-11-15</td></tr><tr><td align="center">Putty</td><td align="center">v1.79</td><td align="center">2023-08-26</td></tr><tr><td align="center">Windows Terminal</td><td align="center">v1.18.3181.0</td><td align="center">2023-11-15</td></tr></tbody></table><p><strong>All applications are set to scrollback lines to <code>1200000</code> and window size to <code>110x32</code>. Test data is for reference only.</strong><br><em>Note: The maximum scrollback lines for <code>Windows Terminal</code> can only be set to <code>32768</code>. This limitation might have been implemented for performance reasons during its design, so its memory usage has not been tested and is meaningless.</em></p><table><thead><tr><th align="center">Benchmark: Execute commands</th></tr></thead><tbody><tr><td align="center"><img src="/img/performance_terminal.png" alt="..."></td></tr></tbody></table><table><thead><tr><th></th><th align="center">WindTerm</th><th align="center">Putty</th><th align="center">Windows Terminal</th></tr></thead><tbody><tr><td>elapsed</td><td align="center">1.305s</td><td align="center">9.759s</td><td align="center">6.774s</td></tr><tr><td>memory (before)</td><td align="center">33.1MB</td><td align="center">3.7MB</td><td align="center">-</td></tr><tr><td>memory (after)</td><td align="center">49.6MB</td><td align="center">555.5MB</td><td align="center">-</td></tr></tbody></table><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/windterm_putty_performance.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> performance </tag>
<tag> terminal </tag>
<tag> shell </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Performance / Sftp Transfer</title>
<link href="/2023/11/15/benchmark-sftp-transfer/"/>
<url>/2023/11/15/benchmark-sftp-transfer/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>Sftp transfer has fast speed for uploading, downloading and deleting, especially for huge files and large number of small files.</p><h1 id="Benchmark"><a href="#Benchmark" class="headerlink" title="Benchmark"></a>Benchmark</h1><p>The testing environment used for testing is as follows:<br><code>Hardware: 2.3 GHz Intel Core i5 and 8GB Memory</code><br><code>Software: WSL(Ubuntu 18.04.2), Windows 10</code></p><table><thead><tr><th align="center">Application</th><th align="center">Version</th><th align="center">Release Data</th></tr></thead><tbody><tr><td align="center">WindTerm</td><td align="center">v1.6.0 Prerelease 3</td><td align="center">2023-11-15</td></tr><tr><td align="center">FileZilla</td><td align="center">v3.66.1</td><td align="center">2023-11-03</td></tr><tr><td align="center">WinSCP</td><td align="center">v6.1.2</td><td align="center">2023-09-19</td></tr></tbody></table><p><strong>All applications use their default configurations, and test data is for reference only.</strong></p><table><thead><tr><th align="center">Benchmark: Transfer files</th></tr></thead><tbody><tr><td align="center"><img src="/img/performance_sftp_transfer_file.png" alt="..."></td></tr><tr><td align="center">Source file: A <code>vmdk</code> file.</td></tr></tbody></table><table><thead><tr><th align="center">Benchmark: Transfer folders</th></tr></thead><tbody><tr><td align="center"><img src="/img/performance_sftp_transfer_folder.png" alt="..."></td></tr><tr><td align="center">Source folder: The subfolder <code>src</code> within the <a href="https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtbase-everywhere-src-5.15.2.zip">qtbase-everywhere-src-5.15.2.zip</a> file.</td></tr></tbody></table><table><thead><tr><th align="center">Benchmark: Remove folders</th></tr></thead><tbody><tr><td align="center"><img src="/img/performance_sftp_transfer_remove_folder.png" alt="..."></td></tr><tr><td align="center">Source folder: The subfolder <code>src</code> within the <a href="https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtbase-everywhere-src-5.15.2.zip">qtbase-everywhere-src-5.15.2.zip</a> file.</td></tr></tbody></table><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/transfer_download_upload_benchmark.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> performance </tag>
<tag> transfer </tag>
<tag> sftp </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Performance / Local Transfer</title>
<link href="/2023/11/15/benchmark-local-transfer/"/>
<url>/2023/11/15/benchmark-local-transfer/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>Local transfer has fast speed for copying and deleting, especially for huge files and large number of small files.</p><p>Test environment: Windows 10, SSD.</p><table><thead><tr><th align="center">Benchmark: Copy files</th></tr></thead><tbody><tr><td align="center"><img src="/img/performance_local_transfer_file.png" alt="..."></td></tr><tr><td align="center">Source file: A <code>vmdk</code> file.</td></tr></tbody></table><table><thead><tr><th align="center">Benchmark: Copy folders</th></tr></thead><tbody><tr><td align="center"><img src="/img/performance_local_transfer_folder.png" alt="..."></td></tr><tr><td align="center">Source folder: The subfolder <code>src</code> within the <a href="https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtbase-everywhere-src-5.15.2.zip">qtbase-everywhere-src-5.15.2.zip</a> file.</td></tr></tbody></table><table><thead><tr><th align="center">Benchmark: Remove folders</th></tr></thead><tbody><tr><td align="center"><img src="/img/performance_local_transfer_remove_folder.png" alt="..."></td></tr><tr><td align="center">Source folder: The subfolder <code>src</code> within the <a href="https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtbase-everywhere-src-5.15.2.zip">qtbase-everywhere-src-5.15.2.zip</a> file.</td></tr></tbody></table>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> performance </tag>
<tag> transfer </tag>
<tag> local system </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Manage Sessions</title>
<link href="/2023/11/15/manage-sessions/"/>
<url>/2023/11/15/manage-sessions/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>Use shortcut menu in Session Tree to manage sessions.</p><h1 id="Management"><a href="#Management" class="headerlink" title="Management"></a>Management</h1><p>Seven types of session management are supported now.</p><ul><li>Move and duplicate <img src="/img/move_session.gif" alt="..."></li><li>Label <img src="/img/label_session.gif" alt="..."></li><li>Group <img src="/img/group_session.gif" alt="..."></li><li>Delete <img src="/img/delete_session.gif" alt="..."></li><li>Property <img src="/img/property_session.gif" alt="..."></li><li>Filter <img src="/img/filter_session.gif" alt="..."></li></ul>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> session </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Highlight Text / Highlight Text Bar</title>
<link href="/2023/06/07/highlight_text_bar/"/>
<url>/2023/06/07/highlight_text_bar/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p><code>Highlight Text Bar</code> supports quickly marking text with preset background colors and also allows for quickly removing current text markup.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/highlight_text_bar.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> highlight text </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Highlight Text / Highlight Text Dialog</title>
<link href="/2023/06/07/highlight_text_dialog/"/>
<url>/2023/06/07/highlight_text_dialog/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p><code>Highligh Text Dialog</code> supports adding, modifying, and deleting <code>text mark</code> rules. Compared to <a href="/2023/06/07/highlight_text_bar/" title="WindTerm - Highlight Text / Highlight Text Bar">Highlight Text Bar</a>, <code>Highligh Text Dialog</code> can provide more detailed settings for <code>text mark</code> rules.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/highlight_text_dialog.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> highlight text </tag>
<tag> dialog </tag>
</tags>
</entry>
<entry>
<title>WindTerm - OneKey / SSH OneKey</title>
<link href="/2023/06/07/onekey_ssh_onekey/"/>
<url>/2023/06/07/onekey_ssh_onekey/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p><code>SSH OneKey</code> enables automatic login by using the preset <code>password</code>, <code>public-key</code> and <code>keyboard-interactive</code> required to log in to the server. When a large number of servers share the same login settings, this feature can greatly facilitate their management. Especially when login settings change, it is easy to make all servers switch to the new login settings by simply modifying the corresponding <code>OneKey</code>.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/onekey_ssh_onekey.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> ssh </tag>
<tag> onekey </tag>
</tags>
</entry>
<entry>
<title>WindTerm - OneKey / Account OneKey</title>
<link href="/2023/06/07/onekey_account_onekey/"/>
<url>/2023/06/07/onekey_account_onekey/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p><code>Account OneKey</code> supports automatically logging into the server using the <code>Expect</code> method. A series of expected text to receive from the server, including prompts for <code>username</code> and <code>passwords</code>, and corresponding reply text to be sent to the server can be set.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/onekey_account_onekey.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> onekey </tag>
<tag> account </tag>
</tags>
</entry>
<entry>
<title>WindTerm - OneKey / Session Manager</title>
<link href="/2023/06/07/onekey_session_manager/"/>
<url>/2023/06/07/onekey_session_manager/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p><code>Session manager</code> supports quick and batch setting of <code>OneKey</code> for sessions. When a large number of login settings for sessions have changed, the manager will greatly facilitate the resetting of login settings.</p><h1 id="Intro-Video"><a href="#Intro-Video" class="headerlink" title="Intro Video"></a>Intro Video</h1><p><img src="/img/onekey_session_manager.gif" alt="..."></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>
<tag> windterm </tag>
<tag> onekey </tag>
<tag> session manager </tag>
</tags>
</entry>
<entry>
<title>WindTerm - Trigger</title>
<link href="/2023/06/06/trigger/"/>
<url>/2023/06/06/trigger/</url>
<content type="html"><![CDATA[<h1 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h1><p>A trigger is an action that is automatically executed when the output received from a server matches specified text or regular expressions. Triggers help automate and streamline workflows in the terminal, increasing efficiency and reducing the need for manual intervention.</p><p><code>WindTerm</code> supports the following trigger types:</p><ul><li><a href="/2023/06/06/trigger_custom_link/" title="WindTerm - Trigger / Custom Link">Custom Link</a></li><li><a href="/2023/06/06/trigger_custom_menu/" title="WindTerm - Trigger / Custom Menu">Custom Menu</a></li><li><a href="/2023/06/06/trigger_event_connection_disconnection/" title="WindTerm - Trigger / Connection And Disconnection">Event: Connection And Disconnection</a></li><li><a href="/2023/06/06/trigger_highlight_text/" title="WindTerm - Trigger / Highlight Text">Highlight Text</a></li><li><a href="/2023/06/06/trigger_play_sound/" title="WindTerm - Trigger / Play Sound">Play Sound</a></li><li><a href="/2023/06/06/trigger_run_command/" title="WindTerm - Trigger / Run Command">Run Command</a></li><li><a href="/2023/06/06/trigger_send_text/" title="WindTerm - Trigger / Send Text">Send Text</a></li><li><a href="/2023/06/06/trigger_show_tooltip/" title="WindTerm - Trigger / Show Tooltip">Show Tooltip</a></li></ul><p><code>WindTerm</code> also has the following built-in triggers to provide convenient functionality:</p><ul><li><a href="/2023/06/06/trigger_built-in_ip_address/" title="WindTerm - Trigger / Built-in / Ip Address">Ip Address</a></li><li><a href="/2023/06/06/trigger_built-in_hyperlink/" title="WindTerm - Trigger / Built-in / Hyperlink">Hyperlink</a></li><li><a href="/2023/06/06/trigger_built-in_hexadecimal_converter/" title="WindTerm - Trigger / Built-in / Hexadecimal Converter">Hexadecimal Converter</a></li><li><a href="/2023/06/06/trigger_built-in_timestamp_converter/" title="WindTerm - Trigger / Built-in / Timestamp Converter">Timestamp Converter</a></li><li><a href="/2023/06/06/trigger_built-in_unarchiver/" title="WindTerm - Trigger / Built-in / Unarchiver">Unarchiver</a></li></ul><h1 id="Regular-Expression"><a href="#Regular-Expression" class="headerlink" title="Regular Expression"></a>Regular Expression</h1><p><code>WindTerm</code> supports using named capturing in the matching regular expression patterns, and captured groups can be referenced when generating the return value. For example, a <code>Run Command</code> trigger can be used to launch <code>vi</code> with the filename and line number based on a regular expression that includes two named groups:</p><table><thead><tr><th>Output</th><th align="left">File “test.py”, line 5, in <module></th></tr></thead><tbody><tr><td>Regex</td><td align="left">File “(?<file>\S+)”.*line (?<line>\d+)</td></tr><tr><td>Command</td><td align="left">vi ${file} +${line}\n</td></tr></tbody></table><h1 id="Javascript"><a href="#Javascript" class="headerlink" title="Javascript"></a>Javascript</h1><p>The trigger types such as <code>Open Hyperlink</code>, <code>Send Text</code>, and <code>Show Tooltip</code> support using JavaScript to generate return values. The available JavaScript objects and functions can be referenced from:</p><p><a href="https://doc.qt.io/qt-5/qtqml-javascript-functionlist.html">List of JavaScript Objects and Functions</a></p>]]></content>
<categories>
<category> WindTerm </category>
</categories>
<tags>