Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/doc/en/html/setup/teraterm-win.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10867 - (show annotations) (download) (as text)
Mon Aug 21 15:27:50 2023 UTC (9 months, 1 week ago) by nmaya
File MIME type: text/html
File size: 15365 byte(s)
「ウィンドウの角を丸くしない」の英訳を修正
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <title>Window (Tera Term setup file)</title>
7 <meta http-equiv="Content-Style-Type" content="text/css">
8 <link rel="stylesheet" href="../style.css" type="text/css">
9 </head>
10 <body>
11
12 <h1 id="autocopy">Disabling auto text copying</h1>
13
14 <p>
15 If you select text by mouse, it is copied to the clipboard at the same time. To disable the auto text copying, edit the AutoTextCopy line in the [Tera Term] section of the setup file like the following:
16 </p>
17
18 <pre>
19 AutoTextCopy=off
20 </pre>
21
22 <pre>
23 Default:
24 AutoTextCopy=on
25 </pre>
26
27
28 <h1 id="delimiter">Delimiters of a word selected by double clicking</h1>
29
30 <p>
31 You can select a word by double clicking it with the left mouse button. You can specify delimiter characters for the word selection by editing the DelimList line in the [Tera Term] section of the setup file like the following:
32 </p>
33
34 <pre>
35 DelimList=&lt;delimiter characters&gt;
36 </pre>
37
38 <p>
39 For example:
40 </p>
41
42 <pre>
43 DelimList=&lt;&gt;()[]
44 </pre>
45
46 <p>
47 specifies 6 delimiter characters "&lt;", "&gt;", "(", ")", "[" and "]".
48 Note that the space and "$" characters should be specified as "$20" and "$24":
49 </p>
50
51 <pre>
52 DelimList=$20 ; space character
53 </pre>
54
55 <pre>
56 Default:
57 DelimList=$20!"#$24%&amp;'()*+,-./:;&lt;=&gt;?@[\]^`{|}~
58 </pre>
59
60 <p>
61 In the DelimList line, only singe-byte code characters can be specified. Double-byte code characters (Japanese kanji) are regarded as delimiters. You can make them be non-delimiters by editing the DelimDBCS line like the following:
62 </p>
63
64 <pre>
65 DelimDBCS=off
66 </pre>
67
68 <pre>
69 Default:
70 DelimDBCS=on
71 </pre>
72
73 <p>
74 If you prefer the word selection behavior of earlier Tera Term versions, specify like the following:
75 </p>
76
77 <pre>
78 DelimList=$20
79 DelimDBCS=off
80 </pre>
81
82
83 <h1 id="popup">Disabling the pop-up menu</h1>
84
85 <p>
86 When the menu bar is hidden, clicking the left mouse button while pressing the Ctrl key causes the pop-up menu to appear. To disable the pop-up menu, edit the EnablePopupMenu line in the [Tera Term] section of the setup file like the following:
87 </p>
88
89 <pre>
90 EnablePopupMenu=off
91 </pre>
92
93 <pre>
94 Default:
95 EnablePopupMenu=on
96 </pre>
97
98
99 <h1 id="menubar">Hiding the "Show menu bar" command</h1>
100
101 <p>
102 When the menu bar is hidden, the "Show menu bar" command appears in the system menu. To hide the "Show menu bar" command, edit the EnableShowMenu line in the [Tera Term] section of the setup file like the following:
103 </p>
104
105 <pre>
106 EnableShowMenu=off
107 </pre>
108
109 <pre>
110 Default:
111 EnableShowMenu=on
112 </pre>
113
114
115 <h1 id="lang">Disabling the language mode selection</h1>
116
117 <p>
118 To disable the language mode selection in the [Setup] General dialog box, edit the LanguageSelection line in the [Tera Term] section of the setup file like the following:
119 </p>
120
121 <pre>
122 LanguageSelection=off
123 </pre>
124
125 <pre>
126 Default:
127 LanguageSelection=on
128 </pre>
129
130
131 <h1 id="scrollbuf">Maximum scroll buffer size</h1>
132
133 <p>
134 You can change the maximum scroll buffer size, which can be specified in the [Setup] Window dialog box, by editing the MaxBuffSize line in the [Tera Term] section of the setup file like the following:
135 </p>
136
137 <pre>
138 MaxBuffSize=&lt;number of lines&gt;
139 (should be less than or equal to 500000)
140 </pre>
141
142 <p>
143 Note: Tera Term consumes &lt;scroll buffer size&gt; * &lt;terminal width&gt; * 5 bytes of memory for the scroll buffer.
144 </p>
145
146 <pre>
147 Default:
148 MaxBuffSize=10000
149 </pre>
150
151
152 <h1 id="blink">Nonblinking cursor</h1>
153
154 <p>
155 You can make the cursor nonblinking by editing the NonblinkingCursor line in the [Tera Term] section of the setup file like the following:
156 </p>
157
158 <pre>
159 NonblinkingCursor=on
160 </pre>
161
162 <pre>
163 Default:
164 NonblinkingCursor=off
165 </pre>
166
167
168 <h1 id="scrollline">Maximum number of lines to move in a jump scrolling</h1>
169
170 <p>
171 To change the maximum number of lines to move in a jump scrolling, edit the ScrollThreshold line in the [Tera Term] section of the setup file like the following:
172 </p>
173
174 <pre>
175 ScrollThreshold=&lt;number of lines&gt;
176 </pre>
177
178 <pre>
179 Default:
180 ScrollThreshold=12
181 </pre>
182
183
184 <h1 id="textselect">Disabling text selection when the window is activated by mouse</h1>
185
186 <p>
187 When the window is inactive, you can activate the window by clicking the text area of window. In the default setup, the text selection is started by this mouse clicking at the same time. To disable the text selection when the window is activated by mouse, edit the SelectOnActivate line in the [Tera Term] section of the setup file like the following:
188 </p>
189
190 <pre>
191 SelectOnActivate=off
192 </pre>
193
194 <pre>
195 Default:
196 SelectOnActivate=on
197 </pre>
198
199
200 <h1 id="title">Title format</h1>
201
202 <p>
203 To change the title format, edit the TitleFormat line in the [Tera Term] section of the setup file like the following:
204 </p>
205
206 <p>
207 You can change the key code for the left mouse button by editing the TEKGINMouseCode line in the [Tera Term] section of the setup file like the following:
208 </p>
209
210 <pre>
211 TitleFormat=&lt;format ID&gt;
212 </pre>
213
214 <p>
215 &lt;format ID&gt; is an integer value. It is treated as bit string.
216 </p>
217
218 <table>
219 <tr>
220 <td>1st bit (1)</td>
221 <td>Displays tcp hostname or serial port number</td>
222 </tr>
223 <tr>
224 <td>2nd bit (2)</td>
225 <td>Displays session No.</td>
226 </tr>
227 <tr>
228 <td>3rd bit (4)</td>
229 <td>Displays VT/TEK</td>
230 </tr>
231 <tr>
232 <td>4th bit (8)</td>
233 <td>Displays &lt;host/port&gt; first</td>
234 </tr>
235 <tr>
236 <td>5th bit (16)</td>
237 <td>Displays TCP port number</td>
238 </tr>
239 <tr>
240 <td>6th bit (32)</td>
241 <td>Displays the speed of serial port</td>
242 </tr>
243 </table>
244
245 <p>
246 Examples of &lt;format ID&gt; are shown as follows.
247 </p>
248
249 <pre>
250 Format ID Title format
251 0 &lt;title&gt;
252 1 &lt;title&gt; - &lt;host/port&gt;
253 2 &lt;title&gt; (session no.)
254 3 &lt;title&gt; - &lt;host/port&gt; (session no.)
255 4 &lt;title&gt; VT/TEK
256 5 &lt;title&gt; - &lt;host/port&gt; VT/TEK
257 6 &lt;title&gt; (session no.) VT/TEK
258 7 &lt;title&gt; - &lt;host/port&gt; (session no.) VT/TEK
259 13 &lt;host/port&gt; - &lt;title&gt; VT/TEK
260 29 &lt;host:tcpport/port&gt; - &lt;title&gt; VT/TEK
261 45 &lt;host/port:bps&gt; - &lt;title&gt; VT/TEK
262 61 &lt;host:tcpport/port:bps&gt; - &lt;title&gt; VT/TEK
263 </pre>
264
265 <pre>
266 Default:
267 TitleFormat=5
268 </pre>
269
270
271 <h1 id="color">Actual colors of "white" and "black" colored text</h1>
272
273 <p>
274 The escape sequences "&lt;ESC&gt;[37m" and "&lt;ESC&gt;[30m" make the text color white and black, respectively. Similarly, the escape sequences "&lt;ESC&gt;[47m" and "&lt;ESC&gt;[40m" make the background color white and black, respectively.
275 </p>
276
277 <p>
278 Some applications assume that the screen background is black (like real VT100 terminal), and expect that white colored text is visible. However, when the background color of Tera Term is white, therefore white colored text is invisible.
279 </p>
280
281 <p>
282 If you edit the UseTextColor line in the [Tera Term] section of the setup file like the following:
283 </p>
284
285 <pre>
286 UseTextColor=on
287 </pre>
288
289 <p>
290 the actual color of "white" colored text (background) becomes a color for "Text" specified in the [Setup] Window dialog box. Similarly, the actual colors for "black" text (background) becomes a color for "Background".
291 </p>
292
293 <pre>
294 Default:
295 UseTextColor=off
296 </pre>
297
298
299 <h1 id="space">Space between characters (lines)</h1>
300
301 <p>
302 To change space between characters (lines), edit the VTFontSpace line in the [Tera Term] section of the setup file like the following:
303 </p>
304
305 <pre>
306 VTFontSpace=&lt;dx1&gt;,&lt;dx2&gt;,&lt;dy1&gt;,&lt;dy2&gt;
307 </pre>
308
309 <pre>
310 Where:
311 &lt;dx1&gt; Left side space for each character in pixels.
312 &lt;dx2&gt; Right side space for each character in pixels.
313 &lt;dy1&gt; Space above each line in pixels.
314 &lt;dy2&gt; Space below each line in pixels.
315 </pre>
316
317 <pre>
318 Example:
319 VTFontSpace=0,1,0,0 1 pixel of right side space for each character.
320 VTFontSpace=0,0,1,0 1 pixel of space above each line.
321 </pre>
322
323 <pre>
324 Default:
325 VTFontSpace=0,0,0,0
326 </pre>
327
328
329 <h1 id="window">Hiding the [Window] menu</h1>
330
331 <p>
332 To hide the [Window] menu, edit the WindowMenu line in the [Tera Term] section of the setup file like the following:
333 </p>
334
335 <pre>
336 WindowMenu=off
337 </pre>
338
339 <pre>
340 Default:
341 WindowMenu=on
342 </pre>
343
344 <h1 id="maximize">How to scroll the screen when the window size is maximized</h1>
345 <p>
346 The screen scrolling method can be specified when the window size is maximized.
347 </p>
348 <p>
349 When the window size is maximized, the screen will be corrupted while the screen is scrolling as same normal window.
350 So, a user can change the method of scrolling method. <br
351 Currently, below scrolling methods are as follows:
352 </p>
353
354 <ul>
355 <li> Method 0. Normal scrolling method is used. However, a part of character will be corrupted while scrolling.</li>
356 <li> Method 1. Scrolling method until Tera Term 4.94 is used. Character is not corrupted, however the screen flickers and the scrolling speed is slow. </li>
357 <li> Method 2. New method since Tera Term 4.95 is used. The screen does not flicker, however bottom line will remain garbage on scrolling back.</li>
358 </ul>
359
360 <p>
361 The default value is Method 2 when the window size is maximized. If you have a problem by using scrolling, the method can be changed another method. <br>
362 For example, when the MaximizedBugTweak entry of [Tera Term] section is changed below setting, the Method 1 is used for scrolling.
363 </p>
364
365 <pre>
366 MaximizedBugTweak=1
367 </pre>
368
369 <pre>
370 Default:
371 MaximizedBugTweak=2
372 </pre>
373
374
375 <h1 id="killfocus">Display the cursor even if the window comes out of focus</h1>
376 <p>
377 Tera Term will display the cursor even if the window comes out of focus.<br>
378 If you want to disable this option, modify a line of KillFocusCursor in [Tera Term] section of setup file as follows.
379 </p>
380
381 <pre>
382 KillFocusCursor=off
383 </pre>
384
385 <pre>
386 Default:
387 KillFocusCursor=on
388 </pre>
389
390
391 <h1 id="vttekpos">Fix the initial window position</h1>
392 <p>
393 In order to change the default window position, change values of VTPos line(VT Window) and TEKPos line(TEK Window) at [Tera Term] section inside the setup file.<br>
394 For example, if you want to set the default VT window position to 200 pixels from the left side of the screen and 100px from the top of the screen, change the setup file as follows.
395 </p>
396
397 <pre>
398 VTPos=200,100
399 </pre>
400
401 <p>
402 The initial position is not fixed and Windows can decide the position by changing the setup file as follows.
403 </p>
404
405 <pre>
406 VTPos=-2147483648,-2147483648
407 TEKPos=-2147483648,-2147483648
408 </pre>
409
410 <p>
411 Notice: As described <a href="#savevtwinpos">below</a>, if SaveVTPosWinPos is on and at the time of executing "Save setup" or closing VT window, VTPos setting will be overwritten by current window position setting.
412 </p>
413
414 <pre>
415 Default:
416 VTPos=-2147483648,-2147483648
417 TEKPos=-2147483648,-2147483648
418 </pre>
419
420
421 <h1 id="savevtwinpos">Save the window position</h1>
422 <p>
423 Tera Term does not save the window position when "Save setup" was called.<br>
424 If you enable this position, current window position is saved to a specified setup file.
425 </p>
426
427 <p>
428 Also if this option is enabled, current window position and terminal size are saved to the current setup file when VT window was closed.
429 </p>
430
431 <pre>
432 SaveVTWinPos=on
433 </pre>
434
435 <pre>
436 Default:
437 SaveVTWinPos=off
438 </pre>
439
440
441 <h1 id="WindowIcon">Change the window icon</h1>
442 <p>
443 Tera Term executable program includes "VT window" icon, "TEK window" icon, and some other icons.
444 If you change the value of VTIcon or TEKIcon, the displaying icon of VT window or TEK window is changed.
445 </p>
446
447 <p>
448 For example, to use old icon for VT window, specify like the following:
449 </p>
450
451 <pre>
452 VTIcon=VT_CLASSIC
453 </pre>
454
455 <p>
456 Following icon names are available:
457 </p>
458
459 <table>
460 <thead>
461 <tr><th>Icon name</th> <th>Icon</th></tr>
462 </thead>
463
464 <tbody>
465 <tr><td>TTERM</td> <td><img src="../image/icon-teraterm.png" ALT="Icon of TTERM"></td></tr>
466 <tr><td>VT</td> <td><img src="../image/icon-vt.png" ALT="Icon of VT"></td></tr>
467 <tr><td>TEK</td> <td><img src="../image/icon-tek.png" ALT="Icon of TEK"></td></tr>
468 <tr><td>TTERM_CLASSIC</td> <td><img src="../image/icon-teraterm_classic.png" ALT="Icon of TTERM_CLASSIC"></td></tr>
469 <tr><td>VT_CLASSIC</td> <td><img src="../image/icon-vt_classic.png" ALT="Icon of VT_CLASSIC"></td></tr>
470 <tr><td>TTERM_3D</td> <td><img src="../image/icon-teraterm_3d.png" ALT="Icon of TTERM_3D"></td></tr>
471 <tr><td>VT_3D</td> <td><img src="../image/icon-vt_3d.png" ALT="Icon of VT_3D"></td></tr>
472 <tr><td>TTERM_FLAT</td> <td><img src="../image/icon-teraterm_flat.png" ALT="Icon of TTERM_FLAT"></td></tr>
473 <tr><td>VT_FLAT</td> <td><img src="../image/icon-vt_flat.png" ALT="Icon of VT_FLAT"></td></tr>
474 <tr><td>CYGTERM</td> <td><img src="../image/icon-cygterm.png" ALT="Icon of CYGTERM"></td></tr>
475 <tr><td>Default</td> <td>Default("VT" at VT window, "TEK" at TEK window)</td></tr>
476 </tbody>
477 </table>
478
479 <p>
480 Also, the icon of SSH connection can be changed. For example, when the yellow icon(TTSSH2.62 earlier) is specified, please change the SSHIcon entry in the [TTSSH] section in the following:
481 </p>
482
483 <pre>
484 SSHIcon=yellow
485 </pre>
486
487 <p>
488 The SSHIcon can be specified in the following names:
489 </p>
490
491 <table>
492 <thead>
493 <tr><th>Name</th> <th>Icon</th></tr>
494 </thead>
495
496 <tbody>
497 <tr><td>flat2</td> <td><img src="../image/icon-ttsecure.png" ALT="flat2 ttssh icon"></tr>
498 <tr><td>classic</td> <td><img src="../image/icon-ttsecure_classic.png" ALT="original ttssh icon"></tr>
499 <tr><td>yellow</td> <td><img src="../image/icon-ttsecure_yellow.png" ALT="yellow ttssh icon"></tr>
500 <tr><td>green</td> <td><img src="../image/icon-ttsecure_green.png" ALT="green ttssh icon"></tr>
501 <tr><td>flat</td> <td><img src="../image/icon-ttsecure_flat.png" ALT="flat ttssh icon"></tr>
502 <tr><td>Default</td> <td>A default icon(equal to flat2)</td></tr>
503 </tbody>
504 </table>
505
506 <pre>
507 Default:
508 VTIcon=Default
509 TEKIcon=Default
510 SSHIcon=Default
511 </pre>
512
513
514 <h1 id="delayselect">Delay for stating of text selection</h1>
515 <p>
516 You can configure the delay for the start of text selection with the mouse and treat it as a click if the time you drag with the mouse is short.<br>
517 For example, to handle as a click when the mouse drag time is shorter than 200 msecs, edit the MouseSelectStartDelay line in the [Tera Term] section of the setup file like the following:
518 </p>
519
520 <pre>
521 MouseSelectStartDelay=200
522 </pre>
523
524 <pre>
525 Default:
526 MouseSelectStartDelay=0
527 </pre>
528
529
530 <h1 id="WindowCornerDontround">Don&#39;t round window corners</h1>
531
532 <p>
533 On Windows 11 the corners of window are rounded, so some areas are not shown.
534 To prevent rounding the corners of the VT and TEK window, change the WindowCornerDontround line in [Tera Term] section of the setup file like the following:
535 </p>
536
537 <pre>
538 WindowCornerDontround=on
539 </pre>
540
541 <pre>
542 Default:
543 WindowCornerDontround=off
544 </pre>
545
546
547 </body>
548 </html>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26