From svnnotify @ sourceforge.jp Fri Jul 1 12:10:07 2016
From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
Date: Fri, 01 Jul 2016 12:10:07 +0900
Subject: [Ttssh2-commit] =?utf-8?b?WzY0MjBdICDjg4njgq3jg6Xjg6Hjg7Pjg4g=?=
=?utf-8?b?5pu05pawIChyNjQxOCk=?=
Message-ID: <1467342607.920049.23366.nullmailer@users.sourceforge.jp>
Revision: 6420
http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6420
Author: doda
Date: 2016-07-01 12:10:07 +0900 (Fri, 01 Jul 2016)
Log Message:
-----------
ドキュメント更新 (r6418)
Revision Links:
--------------
http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6418
Modified Paths:
--------------
trunk/doc/en/html/about/history.html
trunk/doc/en/html/menu/setup-additional.html
trunk/doc/ja/html/about/history.html
trunk/doc/ja/html/menu/setup-additional.html
-------------- next part --------------
Modified: trunk/doc/en/html/about/history.html
===================================================================
--- trunk/doc/en/html/about/history.html 2016-06-30 13:33:45 UTC (rev 6419)
+++ trunk/doc/en/html/about/history.html 2016-07-01 03:10:07 UTC (rev 6420)
@@ -34,10 +34,14 @@
-
+
Bug fixes
Modified: trunk/doc/en/html/menu/setup-additional.html
===================================================================
--- trunk/doc/en/html/menu/setup-additional.html 2016-06-30 13:33:45 UTC (rev 6419)
+++ trunk/doc/en/html/menu/setup-additional.html 2016-07-01 03:10:07 UTC (rev 6420)
@@ -183,6 +183,11 @@
Enable selection by mouse drag only with left button.
+ - Trim trailing new line character when pasting
+ -
+ Remove trailing new line character when pasting.
+
+
- Confirm change paste
-
When the Clipboard includes CR/LF, the confirmation
Modified: trunk/doc/ja/html/about/history.html
===================================================================
--- trunk/doc/ja/html/about/history.html 2016-06-30 13:33:45 UTC (rev 6419)
+++ trunk/doc/ja/html/about/history.html 2016-07-01 03:10:07 UTC (rev 6420)
@@ -34,10 +34,14 @@
\x83o\x83O\x8FC\x90\xB3
Modified: trunk/doc/ja/html/menu/setup-additional.html
===================================================================
--- trunk/doc/ja/html/menu/setup-additional.html 2016-06-30 13:33:45 UTC (rev 6419)
+++ trunk/doc/ja/html/menu/setup-additional.html 2016-07-01 03:10:07 UTC (rev 6420)
@@ -181,6 +181,11 @@
\x83}\x83E\x83X\x83h\x83\x89\x83b\x83O\x82?\xE6\x82\xE9\x91I\x91\xF0\x82\xF0\x81A\x8D\xB6\x83{\x83^\x83\x93\x82ł??L\x8C\xF8\x82?\xB7\x82\xE9\x81B
+ - Trim trailing new line character when pasting
+ -
+ \x93\\x82\xE8\x95t\x82\xAF\x8E\x9E\x82?\x96\x94\xF6\x82?\xFC\x8Ds\x82\xF0\x8D?\x82\xB7\x82\xE9\x81B
+
+
- Confirm change paste
-
\x83N\x83\x8A\x83b\x83v\x83{\x81[\x83h\x82?\xFC\x8Ds\x83R\x81[\x83h(CR/LF)\x82\xF0\x8A???\x81A\x83}\x83E\x83X\x82?E\x83N\x83\x8A\x83b\x83N\x82\xA8\x82\xE6\x82\xD1Alt+V\x82\xC5
From svnnotify @ sourceforge.jp Fri Jul 1 12:14:21 2016
From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
Date: Fri, 01 Jul 2016 12:14:21 +0900
Subject: [Ttssh2-commit] =?utf-8?b?WzY0MjRdICDkvb/jgaPjgabjgYTjgarjgYQ=?=
=?utf-8?b?5aSJ5pWw44KS5YmK6ZmkICYg5LiA6YOo5aSJ5pWw5ZCN44KS5aSJ5pu0?=
Message-ID: <1467342861.859619.28979.nullmailer@users.sourceforge.jp>
Revision: 6424
http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6424
Author: doda
Date: 2016-07-01 12:14:21 +0900 (Fri, 01 Jul 2016)
Log Message:
-----------
使っていない変数を削除 & 一部変数名を変更
Modified Paths:
--------------
trunk/teraterm/ttpmacro/ttmdlg.cpp
-------------- next part --------------
Modified: trunk/teraterm/ttpmacro/ttmdlg.cpp
===================================================================
--- trunk/teraterm/ttpmacro/ttmdlg.cpp 2016-07-01 03:14:19 UTC (rev 6423)
+++ trunk/teraterm/ttpmacro/ttmdlg.cpp 2016-07-01 03:14:21 UTC (rev 6424)
@@ -45,7 +45,7 @@
extern "C" {
void ParseParam(PBOOL IOption, PBOOL VOption)
{
- int i, j, k;
+ int dirlen, fnpos;
char *Param;
char Temp[MaxStrLen];
PCHAR start, cur, next;
@@ -121,13 +121,13 @@
FileName[0] = 0;
}
else if (FileName[0]!=0) {
- if (GetFileNamePos(FileName,&j,&k)) {
- FitFileName(&FileName[k],sizeof(FileName)-k,".TTL");
- strncpy_s(ShortName, sizeof(ShortName),&FileName[k], _TRUNCATE);
- if (j==0) {
- strncpy_s(FileName, sizeof(FileName),HomeDir, _TRUNCATE);
- AppendSlash(FileName,sizeof(FileName));
- strncat_s(FileName,sizeof(FileName),ShortName,_TRUNCATE);
+ if (GetFileNamePos(FileName, &dirlen, &fnpos)) {
+ FitFileName(&FileName[fnpos], sizeof(FileName) - fnpos, ".TTL");
+ strncpy_s(ShortName, sizeof(ShortName), &FileName[fnpos], _TRUNCATE);
+ if (dirlen==0) {
+ strncpy_s(FileName, sizeof(FileName), HomeDir, _TRUNCATE);
+ AppendSlash(FileName, sizeof(FileName));
+ strncat_s(FileName, sizeof(FileName), ShortName, _TRUNCATE);
}
}
else {
From svnnotify @ sourceforge.jp Fri Jul 1 12:14:14 2016
From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
Date: Fri, 01 Jul 2016 12:14:14 +0900
Subject: [Ttssh2-commit] =?utf-8?q?=5B6421=5D__ts=2EAutoScrollOnlyInBottom?=
=?utf-8?b?TGluZSDjgYwgb2ZmIOOBp+OCguOCreODvOWFpeWKmyAvIOODmuODvOOCuQ==?=
=?utf-8?b?44OI44Gn44K544Kv44Ot44O844Or44KS44Oq44K744OD44OI44GZ44KL44KI?=
=?utf-8?b?44GG44Gr44GX44Gf44CC?=
Message-ID: <1467342854.214375.28773.nullmailer@users.sourceforge.jp>
Revision: 6421
http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6421
Author: doda
Date: 2016-07-01 12:14:14 +0900 (Fri, 01 Jul 2016)
Log Message:
-----------
ts.AutoScrollOnlyInBottomLine が off でもキー入力/ペーストでスクロールをリセットするようにした。
Modified Paths:
--------------
trunk/teraterm/teraterm/vtwin.cpp
-------------- next part --------------
Modified: trunk/teraterm/teraterm/vtwin.cpp
===================================================================
--- trunk/teraterm/teraterm/vtwin.cpp 2016-07-01 03:10:07 UTC (rev 6420)
+++ trunk/teraterm/teraterm/vtwin.cpp 2016-07-01 03:14:14 UTC (rev 6421)
@@ -943,7 +943,8 @@
if (Paste) {
if (CBStartPasteConfirmChange(HVTWin, FALSE)) {
CBStartPaste(HVTWin, FALSE, BracketedPasteMode(), 0, NULL, 0);
- if (ts.AutoScrollOnlyInBottomLine != 0 && WinOrgY != 0) {
+ // \x83X\x83N\x83\x8D\x81[\x83\x8B\x88?u\x82\xF0\x83\x8A\x83Z\x83b\x83g
+ if (WinOrgY != 0) {
DispVScroll(SCROLL_BOTTOM, 0);
}
}
@@ -1862,9 +1863,8 @@
}
}
- /* \x8Dʼn\xBA\x8Ds\x82ł\xBE\x82\xAF\x8E\xA9\x93\xAE\x83X\x83N\x83\x8D\x81[\x83\x8B\x82\xB7\x82\xE9\x90?\xE8\x82??
- \x83\x8A\x83\x82\x81[\x83g\x82??L\x81[\x93\xFC\x97?\x97\x90M\x82ŃX\x83N\x83\x8D\x81[\x83\x8B\x82\xB3\x82\xB9\x82\xE9 */
- if (ts.AutoScrollOnlyInBottomLine != 0 && WinOrgY != 0) {
+ // \x83X\x83N\x83\x8D\x81[\x83\x8B\x88?u\x82\xF0\x83\x8A\x83Z\x83b\x83g
+ if (WinOrgY != 0) {
DispVScroll(SCROLL_BOTTOM, 0);
}
}
@@ -2238,9 +2238,8 @@
case KEYDOWN_CONTROL:
return;
case KEYDOWN_COMMOUT:
- /* \x8Dʼn\xBA\x8Ds\x82ł\xBE\x82\xAF\x8E\xA9\x93\xAE\x83X\x83N\x83\x8D\x81[\x83\x8B\x82\xB7\x82\xE9\x90?\xE8\x82??
- \x83\x8A\x83\x82\x81[\x83g\x82??L\x81[\x93\xFC\x97?\x97\x90M\x82ŃX\x83N\x83\x8D\x81[\x83\x8B\x82\xB3\x82\xB9\x82\xE9 */
- if (ts.AutoScrollOnlyInBottomLine != 0 && WinOrgY != 0) {
+ // \x83X\x83N\x83\x8D\x81[\x83\x8B\x88?u\x82\xF0\x83\x8A\x83Z\x83b\x83g
+ if (WinOrgY != 0) {
DispVScroll(SCROLL_BOTTOM, 0);
}
return;
@@ -4442,9 +4441,8 @@
// add confirm (2008.2.4 yutaka)
if (CBStartPasteConfirmChange(HVTWin, FALSE)) {
CBStartPaste(HVTWin, FALSE, BracketedPasteMode(), 0, NULL, 0);
- /* \x8Dʼn\xBA\x8Ds\x82ł\xBE\x82\xAF\x8E\xA9\x93\xAE\x83X\x83N\x83\x8D\x81[\x83\x8B\x82\xB7\x82\xE9\x90?\xE8\x82??
- \x83y\x81[\x83X\x83g\x8F\x88\x97\x9D\x82ŃX\x83N\x83\x8D\x81[\x83\x8B\x82\xB3\x82\xB9\x82\xE9 */
- if (ts.AutoScrollOnlyInBottomLine != 0 && WinOrgY != 0) {
+ // \x83X\x83N\x83\x8D\x81[\x83\x8B\x88?u\x82\xF0\x83\x8A\x83Z\x83b\x83g
+ if (WinOrgY != 0) {
DispVScroll(SCROLL_BOTTOM, 0);
}
}
@@ -4455,9 +4453,8 @@
// add confirm (2008.3.11 maya)
if (CBStartPasteConfirmChange(HVTWin, TRUE)) {
CBStartPaste(HVTWin, TRUE, BracketedPasteMode(), 0, NULL, 0);
- /* \x8Dʼn\xBA\x8Ds\x82ł\xBE\x82\xAF\x8E\xA9\x93\xAE\x83X\x83N\x83\x8D\x81[\x83\x8B\x82\xB7\x82\xE9\x90?\xE8\x82??
- \x83y\x81[\x83X\x83g\x8F\x88\x97\x9D\x82ŃX\x83N\x83\x8D\x81[\x83\x8B\x82\xB3\x82\xB9\x82\xE9 */
- if (ts.AutoScrollOnlyInBottomLine != 0 && WinOrgY != 0) {
+ // \x83X\x83N\x83\x8D\x81[\x83\x8B\x88?u\x82\xF0\x83\x8A\x83Z\x83b\x83g
+ if (WinOrgY != 0) {
DispVScroll(SCROLL_BOTTOM, 0);
}
}
From svnnotify @ sourceforge.jp Fri Jul 1 12:14:19 2016
From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
Date: Fri, 01 Jul 2016 12:14:19 +0900
Subject: [Ttssh2-commit] =?utf-8?b?WzY0MjNdICDjgqrjg5fjgrfjg6fjg7PjgpI=?=
=?utf-8?b?5oyH5a6a44Gn44GN44KL5aC05omA44KS44OV44Kh44Kk44Or5ZCN44Gu5YmN?=
=?utf-8?b?44Gg44GR44Gr6ZmQ5a6a44GX44Gf44CC?=
Message-ID: <1467342859.599456.28926.nullmailer@users.sourceforge.jp>
Revision: 6423
http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6423
Author: doda
Date: 2016-07-01 12:14:19 +0900 (Fri, 01 Jul 2016)
Log Message:
-----------
オプションを指定できる場所をファイル名の前だけに限定した。
Modified Paths:
--------------
trunk/teraterm/ttpmacro/ttmdlg.cpp
-------------- next part --------------
Modified: trunk/teraterm/ttpmacro/ttmdlg.cpp
===================================================================
--- trunk/teraterm/ttpmacro/ttmdlg.cpp 2016-07-01 03:14:16 UTC (rev 6422)
+++ trunk/teraterm/ttpmacro/ttmdlg.cpp 2016-07-01 03:14:19 UTC (rev 6423)
@@ -76,46 +76,46 @@
// the first term shuld be executable filename of TTMACRO
start = GetParam(Temp, sizeof(Temp), Param);
- j = 0;
+ ParamCnt = 0;
- cur = start;
- while (next = GetParam(Temp, sizeof(Temp), cur)) {
+ for (cur = start; next = GetParam(Temp, sizeof(Temp), cur); cur = next) {
DequoteParam(Temp, sizeof(Temp), Temp);
- if (_strnicmp(Temp,"/D=",3)==0) { // DDE option
- strncpy_s(TopicName, sizeof(TopicName), &Temp[3], _TRUNCATE);
+ if (ParamCnt == 0) {
+ if (_strnicmp(Temp,"/D=",3)==0) { // DDE option
+ strncpy_s(TopicName, sizeof(TopicName), &Temp[3], _TRUNCATE);
+ continue;
+ }
+ else if (_stricmp(Temp, "/I")==0) {
+ *IOption = TRUE;
+ continue;
+ }
+ else if (_stricmp(Temp, "/S")==0) {
+ SleepFlag = TRUE;
+ continue;
+ }
+ else if (_stricmp(Temp, "/V")==0) {
+ *VOption = TRUE;
+ continue;
+ }
}
- else if (_stricmp(Temp, "/I")==0) {
- *IOption = TRUE;
+
+ switch (++ParamCnt) {
+ case 1: strncpy_s(FileName, sizeof(FileName), Temp, _TRUNCATE); break;
+ case 2: strncpy_s(Param2, sizeof(Param2), Temp, _TRUNCATE); break;
+ case 3: strncpy_s(Param3, sizeof(Param3), Temp, _TRUNCATE); break;
+ case 4: strncpy_s(Param4, sizeof(Param4), Temp, _TRUNCATE); break;
+ case 5: strncpy_s(Param5, sizeof(Param5), Temp, _TRUNCATE); break;
+ case 6: strncpy_s(Param6, sizeof(Param6), Temp, _TRUNCATE); break;
+ case 7: strncpy_s(Param7, sizeof(Param7), Temp, _TRUNCATE); break;
+ case 8: strncpy_s(Param8, sizeof(Param8), Temp, _TRUNCATE); break;
+ case 9: strncpy_s(Param9, sizeof(Param9), Temp, _TRUNCATE); break;
+ default: ;/* nothing to do */
}
- else if (_stricmp(Temp, "/S")==0) {
- SleepFlag = TRUE;
- }
- else if (_stricmp(Temp, "/V")==0) {
- *VOption = TRUE;
- }
- else {
- switch (++j) {
- case 1: strncpy_s(FileName, sizeof(FileName), Temp, _TRUNCATE); break;
- case 2: strncpy_s(Param2, sizeof(Param2), Temp, _TRUNCATE); break;
- case 3: strncpy_s(Param3, sizeof(Param3), Temp, _TRUNCATE); break;
- case 4: strncpy_s(Param4, sizeof(Param4), Temp, _TRUNCATE); break;
- case 5: strncpy_s(Param5, sizeof(Param5), Temp, _TRUNCATE); break;
- case 6: strncpy_s(Param6, sizeof(Param6), Temp, _TRUNCATE); break;
- case 7: strncpy_s(Param7, sizeof(Param7), Temp, _TRUNCATE); break;
- case 8: strncpy_s(Param8, sizeof(Param8), Temp, _TRUNCATE); break;
- case 9: strncpy_s(Param9, sizeof(Param9), Temp, _TRUNCATE); break;
- default: ;/* nothing to do */
- }
- }
- cur = next;
}
- if (j > 9) {
+ if (ParamCnt > 9) {
ParamCnt = 9;
}
- else {
- ParamCnt = j;
- }
if (FileName[0]=='*') {
FileName[0] = 0;
From svnnotify @ sourceforge.jp Fri Jul 1 12:14:16 2016
From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp)
Date: Fri, 01 Jul 2016 12:14:16 +0900
Subject: [Ttssh2-commit] =?utf-8?b?WzY0MjJdICDoibLjgIXjgajkv67mraM=?=
Message-ID: <1467342856.999103.28853.nullmailer@users.sourceforge.jp>
Revision: 6422
http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6422
Author: doda
Date: 2016-07-01 12:14:16 +0900 (Fri, 01 Jul 2016)
Log Message:
-----------
色々と修正
・typo fix
・重複部分を削除
・表現を修正
・リンク修正
・インデント調整
・タグを調整
Modified Paths:
--------------
trunk/doc/en/html/about/history.html
trunk/doc/en/html/menu/setup-additional.html
trunk/doc/ja/html/about/history.html
trunk/doc/ja/html/menu/setup-additional.html
-------------- next part --------------
Modified: trunk/doc/en/html/about/history.html
===================================================================
--- trunk/doc/en/html/about/history.html 2016-07-01 03:14:14 UTC (rev 6421)
+++ trunk/doc/en/html/about/history.html 2016-07-01 03:14:16 UTC (rev 6422)
@@ -1332,7 +1332,7 @@
added support for specifying any strings as the ConfirmChangePaste function.
added the Wait4allMacroCommand entry in the teraterm.ini file. The default is off. Turn on the value to enable the "wait4all" macro command.
added the new option of the "exec" macro command that the application exit code is stored in the result variable.
@@ -1765,7 +1765,7 @@
Bug fix: the transparency of window could not change to 255.
Bug fix: last 1 character of title string that is sent from server is deleted.
Bug fix: TeraTerm would use the configuration of TCPLocalEcho/TCPCRSend when the user start telnet connection on New connection dialog.
- Bug fix: when continued line copy is enabled, Copy Table does not work correctly
+ Bug fix: when continued line copy is enabled, Copy Table does not work correctly
Bug fix: when Transmit DEL by Delete key is enabled and Num Lock status is off, Numeric Keypad "." sends DEL.
Bug fix: 'wait' macro command can't wait a long string. This bug was introduced in 4.54.
Bug fix: The color value on Window setup dialog would become 255 when the value is less than 16 and the user pushes PageUP key.
Modified: trunk/doc/en/html/menu/setup-additional.html
===================================================================
--- trunk/doc/en/html/menu/setup-additional.html 2016-07-01 03:14:14 UTC (rev 6421)
+++ trunk/doc/en/html/menu/setup-additional.html 2016-07-01 03:14:16 UTC (rev 6422)
@@ -26,7 +26,7 @@
Accept broadcast
- Accept the broadcast command.
+ Accept the broadcast command.
Can be only enabled when the "Realtime mode" is off. However, this option is always ignored when the "Realtime mode" is on.
@@ -42,12 +42,12 @@
Clear display when window resized
- The current screen is cleared when the VT window resizes.
+ The current screen is cleared when the VT window resizes.
Change cursor shape with IME state
- When the IME is enabled, the caret is gray.
+ When the IME is enabled, the caret is gray.
@@ -63,63 +63,65 @@
Disable mouse event tracking when Control is pressed
- The mouse tracking mode is enabled, TeraTerm does not send the mouse operation while the control key is pressed.
+ The mouse tracking mode is enabled, TeraTerm does not send the mouse operation while the control key is pressed.
Accept window title change request
- Configures whether a user accepts the window title changing.
-
- - off
- - Do not accept it.
- - overwrite
- - Accept it, and then display only the window tile.
- - ahead
- - Accept it, and then insert the window title before the canonical title.
- - last
- - Accept it, and then insert the window title after the canonical title.
-
+ Configures whether a user accepts the window title changing.
+
+ - off
+ - Do not accept it.
+ - overwrite
+ - Accept it, and then display only the window tile.
+ - ahead
+ - Accept it, and then insert the window title before the canonical title.
+ - last
+ - Accept it, and then insert the window title after the canonical title.
+
Window title report
- A user can configure how Tera Term can respond to the dtterm window title and icon label reporting request.
-
- - ignore
- - Ignore a window title reporting request.
- - accept
- - Tera Term reports the current window title. However, be careful about using this feature because the security problem will occur.
- - empty
- - Report empty string.
-
+ A user can configure how Tera Term can respond to the dtterm window title and icon label reporting request.
+
+ - ignore
+ - Ignore a window title reporting request.
+ - accept
+ - Tera Term reports the current window title. However, be careful about using this feature because the security problem will occur.
+ - empty
+ - Report empty string.
+
Window control sequence
- added support for the position moving, the minimization, the maximization, the most front, the most back, the refresh and the window size changing(per pixel and character) control sequences regarding the dtterm window operation.
+ added support for the position moving, the minimization, the maximization, the most front, the most back, the refresh and the window size changing(per pixel and character) control sequences regarding the dtterm window operation.
Window report sequence
- This function enables the dtterm control sequence such as the window status reporting, the window position reporting, the window size(in pixel and character) reporting and the root window size reporting, among the window information reporting features.
- If you do not want window information to be sent to remote host by some reason such as security, please disable this setting.
+ This function enables the dtterm control sequence such as the window status reporting, the window position reporting, the window size(in pixel and character) reporting and the root window size reporting, among the window information reporting features.
+ If you do not want window information to be sent to remote host by some reason such as security, please disable this setting.
Cursor control sequence
- Enables the control sequence for the cursor shape.
- This function enables cursor shape change by cursor change sequence of DECSCUSR(cursor shape change), WYSTCURM(Wyse no-blinking cursor), WYULCURM(Wyse underlined cursor) and AT&T 610 blinking cursor.
-
- If a user uses the vim editor, write below entries in the ~/.vimrc to enable this feature.
+ Enables the control sequence for the cursor shape.
+ This function enables cursor shape change by cursor change sequence of DECSCUSR(cursor shape change), WYSTCURM(Wyse no-blinking cursor), WYULCURM(Wyse underlined cursor) and AT&T 610 blinking cursor.
+
+ If a user uses the vim editor, write below entries in the ~/.vimrc to enable this feature.
+
+
set t_SI=^[[3\ q
set t_EI=^[[1\ q
NOTE: Input ^[ by using Control-V Control-[.
- If the cursor periodically blinks after an application exits, a user should configure as follows.
- In the ncurses 5.7 terminfo, the invisible(civis)/normal display(cnorm)/highlighting(cvvis) of the xterm cursor are as follows:
+ If the cursor periodically blinks after an application exits, a user should configure as follows.
+ In the ncurses 5.7 terminfo, the invisible(civis)/normal display(cnorm)/highlighting(cvvis) of the xterm cursor are as follows:
civis=\E[?25l
@@ -127,9 +129,9 @@
cvvis=\E[?12;25h
- When the upper configuration is enabled, the normal cursor displays with the non-blinking mode and the emphasis cursor displays with the blinking mode.
- So, the cursor does not blink when the terminfo application displays the own cursor.
- If a user want to blink the cursor, turn off the CursorCtrlSequence entry or do in the following commands:
+ When the upper configuration is enabled, the normal cursor displays with the non-blinking mode and the emphasis cursor displays with the blinking mode.
+ So, the cursor does not blink when the terminfo application displays the own cursor.
+ If a user want to blink the cursor, turn off the CursorCtrlSequence entry or do in the following commands:
% infocmp xterm > xterm.ti
@@ -143,17 +145,17 @@
Clipboard access from remote
- permits the host to access the clipboard.
-
- - off
- - can not permit
- - write only
- - can permit a clipboard to write
- - read only
- - can permit a clipboard to read
- - read/write
- - can permit a clipboard to write and read
-
+ permits the host to access the clipboard.
+
+ - off
+ - can not permit
+ - write only
+ - can permit a clipboard to write
+ - read only
+ - can permit a clipboard to read
+ - read/write
+ - can permit a clipboard to write and read
+
@@ -161,7 +163,7 @@
"Copy and Paste" Tab
- - Enable continued line copy
+ - Enable continued line copy
-
Concatenates current line with the next line including word
characters when the whole line is stepped over.
@@ -197,23 +199,18 @@
- String file
-
- When the Clipboard includes any strings in the specified file,
+ When the Clipboard includes any strings in the specified file,
the confirmation dialog can be shown to paste by right-click or Alt+V.
This is a foolproof way.
- This function works when the ConfirmChangePaste is enabled.
+ This function works when the ConfirmChangePaste is enabled.
- - Confirm change paste string file
+ - Delimiter characters
-
- When a user pastes, the user can specify a keyword file for ConfirmChangePaste except the CR/LF.
-
-
- - Delimiter characters
- -
Includes delimiter characters for the word selection.
- - Paste delay per line
+ - Paste delay per line
-
A user can delay to send a line data to the remote host when the user pastes multiple lines. The delay time can be specified by this option on the millisecond time scale.
@@ -234,7 +231,7 @@
-
Tera Term window looks like Eterm look-feel background transparency.
-
+
- Background Image
-
When the Eterm look-feel feature is enabled, an image file can be specified as background.
@@ -246,12 +243,11 @@
The range of value is from 0 to 255.
The more brightness reduces the value, the more image brightens.
-
+
+
See also Background transparency.
-
-
- MouseCursor
@@ -285,13 +281,13 @@
- Enable URL attribute color
- Enable ANSI color
-
- Enables each color attributes and color setting.
+ Enables each color attributes and color setting.
If ANSI color is disabled, 16 colors and 256 colors modes are also disabled.
- Underline URL string
-
- Enables Underline attribute on URL string.
+ Enables Underline attribute on URL string.
@@ -332,84 +328,82 @@
%y Year without century, as decimal number (00 - 99)
%Y Year with century, as decimal number
%z, %Z Either the time-zone name or time zone abbreviation, depending on registry settings;
- no characters if time zone is unknown
+ no characters if time zone is unknown
%% Percent sign
- Default log save folder
+ Default log save folder
Specify default path to save log file. It is used when the log file name is not a full path.
- Auto start logging
+ Auto start logging
- Start logging automatically when connecting. Default Log File Name is used for log file name.
- When the /nolog command line is specified, this feature is always disabled.
+ Start logging automatically when connecting. Default Log File Name is used for log file name.
+ When the /nolog command line is specified, this feature is always disabled.
- Log Rotate
+ Log Rotate
- The log rotation is enabled. The extension of the rotated file is added .1, .2, .3 etc.
+ The log rotation is enabled. The extension of the rotated file is added .1, .2, .3 etc.
+
+ - Size
+ -
+ The log file is rotated when it grows bigger than Size bytes. If the size is followed by KB,
+ the size is assumed to be in kilobytes. If the MB is used, the size is in megabytes.
+
+
+ - Rotate
+ -
+ The log file is rotated Rotate times before being removed. If the Rotate is 0,
+ the old version is not removed rather than rotated.
+
+
-
- - Size
- -
- The log file is rotated when it grows bigger than Size bytes. If the size is followed by KB,
- the size is assumed to be in kilobytes. If the MB is used, the size is in megabytes.
-
-
- - Rotate
- -
- The log file is rotated Rotate times before being removed. If the Rotate is 0,
- the old version is not removed rather than rotated.
-
-
-
- Log option
+ Log option
- Specify the log type.
-
+ Specify the log type.
+
+ - Binary
+ -
+ If you select this option, received characters are written without
+ any modifications. Otherwise, new-line codes are converted and
+ escape sequences are stripped out.
+
-
- - Binary
- -
- If you select this option, received characters are written without
- any modifications. Otherwise, new-line codes are converted and
- escape sequences are stripped out.
-
+ - Append
+ -
+ If you select this option and the specified log file already exists,
+ received characters are appended to the file. Otherwise, the file is
+ overwritten.
+
- - Append
- -
- If you select this option and the specified log file already exists,
- received characters are appended to the file. Otherwise, the file is
- overwritten.
-
+ - Plain text
+ -
+ If you select this option, ASCII non-printable characters are not written.
+ NOTE: When the Binary option is enabled, this option can not be checked and the value will be disabled.
+
- - Plain text
- -
- If you select this option, ASCII non-printable characters are not written.
- NOTE: When the Binary option is enabled, this option can not be checked and the value will be disabled.
-
+ - Timestamp
+ -
+ If you select this option, a timestamp is added on top of each log line. The timestamp is added when the first character of the line appears.
+ NOTE: When the Binary option is enabled, this option can not be checked and the value will be disabled.
+
- - Timestamp
- -
- If you select this option, a timestamp is added on top of each log line. The timestamp is added when the first character of the line appears.
- NOTE: When the Binary option is enabled, this option can not be checked and the value will be disabled.
-
+ - Hide dialog
+ -
+ If you select this option, "Log" dialog box is not displayed.
+
- - Hide dialog
- -
- If you select this option, "Log" dialog box is not displayed.
-
+ - Include screen buffer
+ -
+ If you select this option, the logging starts after current all buffer is written into a log file.
+
+
+
- Include screen buffer
-
- If you select this option, the logging starts after current all buffer is written into a log file.
-
-
-
@@ -422,10 +416,11 @@
CygTerm
- Configure CygTerm settings.
-
- (version 4.88 or earlier)
- The CygTerm configuration file(cygterm.cfg) will be immediately written after your configuration. So, you need not to do the save setup.
+ Configure CygTerm settings.
+