svnno****@sourc*****
svnno****@sourc*****
2011年 3月 30日 (水) 00:41:00 JST
Revision: 4402 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4402 Author: doda Date: 2011-03-30 00:41:00 +0900 (Wed, 30 Mar 2011) Log Message: ----------- xterm.html -> vim.html Modified Paths: -------------- trunk/doc/en/html/about/ctrlseq.html trunk/doc/en/html/about/history.html trunk/doc/en/html/usage/tips/index.html trunk/doc/ja/html/about/ctrlseq.html trunk/doc/ja/html/about/emulations.html trunk/doc/ja/html/about/history.html trunk/doc/ja/html/usage/tips/index.html Added Paths: ----------- trunk/doc/en/html/usage/tips/vim.html trunk/doc/ja/html/usage/tips/vim.html Removed Paths: ------------- trunk/doc/en/html/usage/tips/xterm.html trunk/doc/ja/html/usage/tips/xterm.html -------------- next part -------------- Modified: trunk/doc/en/html/about/ctrlseq.html =================================================================== --- trunk/doc/en/html/about/ctrlseq.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/en/html/about/ctrlseq.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -685,8 +685,8 @@ <tr> <td> 2004 </td> <td> - </td> - <td> <a href="../usage/tips/xterm.html#Bracketed">Enables Bracketed paste mode</a>. </td> - <td> <a href="../usage/tips/xterm.html#Bracketed">Disables Bracketed paste mode</a>. </td> + <td> <a href="../usage/tips/vim.html#Bracketed">Enables Bracketed paste mode</a>. </td> + <td> <a href="../usage/tips/vim.html#Bracketed">Disables Bracketed paste mode</a>. </td> </tr> <tr> <td> 7727 </td> Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/en/html/about/history.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -233,7 +233,7 @@ <li>A user can specify any baud rate at the "<a href="../macro/command/setbaud.html">setbaud</a>" macro command.</li> </ul></li> <li>added support for the VPB and HPB control sequence.</li> - <li>added support for <a href="../usage/tips/xterm.html#Bracketed">bracketed paste mode</a>.</li> + <li>added support for <a href="../usage/tips/vim.html#Bracketed">bracketed paste mode</a>.</li> <li>Split the TransBin flag into the Send File and the Log flags. <ul> <li>added the LogBinary entry in the teraterm.ini file. The default value is off.</li> Modified: trunk/doc/en/html/usage/tips/index.html =================================================================== --- trunk/doc/en/html/usage/tips/index.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/en/html/usage/tips/index.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -22,7 +22,7 @@ <LI><A HREF="b-plus.html">Tips on B-Plus</A></LI> <LI><A HREF="not_port23.html">Tips on TCP/IP connection with a port other than 23</A></LI> <LI><A HREF="telnet_protocol.html">Associate with TELNET protocol</A></LI> - <LI><A HREF="xterm.html">xterm</A></LI> + <LI><A HREF="vim.html">Tips on vim</A></LI> </UL> </BODY> Copied: trunk/doc/en/html/usage/tips/vim.html (from rev 4400, trunk/doc/en/html/usage/tips/xterm.html) =================================================================== --- trunk/doc/en/html/usage/tips/vim.html (rev 0) +++ trunk/doc/en/html/usage/tips/vim.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -0,0 +1,45 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> +<title>Tips on vim</title> +<meta http-equiv="Content-Style-Type" content="text/css"> +<link rel="stylesheet" href="../../style.css" type="text/css"> +</head> +<body> + +<h1>Tips on vim</h1> + +<h2><a name="Bracketed">Bracketed Paste Mode</a></h2> + +<p> +The bracketed paste mode is the xterm extension feature. When this feature is enabled, the pasted text is bracketed with control sequences so that the program can differentiate the pasted text from typed-in text.<br> +The program will receive: ESC [ 200 ~, followed by the pasted text, followed by ESC [ 201 ~. +</p> + +<p> +The vim configuration is described below. The following will use xterm's bracketed paste mode to make pasting automatically enable paste mode and insert mode. Also works fine in ~/.vimrc file. +</p> + +<pre> +if &term == "xterm" + let &t_ti = &t_ti . "\e[?2004h" + let &t_te = "\e[?2004l" . &t_te + let &pastetoggle = "\e[201~" + + function XTermPasteBegin(ret) + set paste + return a:ret + endfunction + + map <special> <expr> <Esc>[200~ XTermPasteBegin("0i") + imap <special> <expr> <Esc>[200~ XTermPasteBegin("") + cmap <special> <Esc>[200~ <nop> + cmap <special> <Esc>[201~ <nop> +endif +</pre> + + +</body> +</html> Deleted: trunk/doc/en/html/usage/tips/xterm.html =================================================================== --- trunk/doc/en/html/usage/tips/xterm.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/en/html/usage/tips/xterm.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -1,45 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" - "http://www.w3.org/TR/html4/strict.dtd"> -<html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -<title>Tips on xterm</title> -<meta http-equiv="Content-Style-Type" content="text/css"> -<link rel="stylesheet" href="../../style.css" type="text/css"> -</head> -<body> - -<h1>Tips on xterm</h1> - -<h2><a name="Bracketed">Bracketed Paste Mode</a></h2> - -<p> -The bracketed paste mode is the xterm extension feature. When this feature is enabled, the pasted text is bracketed with control sequences so that the program can differentiate the pasted text from typed-in text.<br> -The program will receive: ESC [ 200 ~, followed by the pasted text, followed by ESC [ 201 ~. -</p> - -<p> -The vim configuration is described below. The following will use xterm's bracketed paste mode to make pasting automatically enable paste mode and insert mode. Also works fine in ~/.vimrc file. -</p> - -<pre> -if &term == "xterm" - let &t_ti = &t_ti . "\e[?2004h" - let &t_te = "\e[?2004l" . &t_te - let &pastetoggle = "\e[201~" - - function XTermPasteBegin(ret) - set paste - return a:ret - endfunction - - map <special> <expr> <Esc>[200~ XTermPasteBegin("0i") - imap <special> <expr> <Esc>[200~ XTermPasteBegin("") - cmap <special> <Esc>[200~ <nop> - cmap <special> <Esc>[201~ <nop> -endif -</pre> - - -</body> -</html> Modified: trunk/doc/ja/html/about/ctrlseq.html =================================================================== --- trunk/doc/ja/html/about/ctrlseq.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/ja/html/about/ctrlseq.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -668,8 +668,8 @@ <tr> <td> 2004 </td> <td> - </td> - <td> <a href="../usage/tips/xterm.html#Bracketed">Bracketed paste mode</a> ðLøÉ·éB </td> - <td> <a href="../usage/tips/xterm.html#Bracketed">Bracketed paste mode</a> ð³øÉ·éB </td> + <td> <a href="../usage/tips/vim.html#Bracketed">Bracketed paste mode</a> ðLøÉ·éB </td> + <td> <a href="../usage/tips/vim.html#Bracketed">Bracketed paste mode</a> ð³øÉ·éB </td> </tr> <tr> <td> 7727 </td> Modified: trunk/doc/ja/html/about/emulations.html =================================================================== --- trunk/doc/ja/html/about/emulations.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/ja/html/about/emulations.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -1,24 +1,25 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" +<!DOCTYPE HTML PUBliC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> -<HTML> -<HEAD> +<html> +<head> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> -<TITLE>G~ [V</TITLE> -<META http-equiv="Content-Style-Type" content="text/css"> +<title>G~ [V</title> +<meta http-equiv="Content-Style-Type" content="text/css"> <link rel="stylesheet" href="../style.css" type="text/css"> -</HEAD> -<BODY> +</head> +<body> <h1>G~ [V</h1> -<UL> - <LI>DEC VT100 Æ VT200/300 Ìê</LI> - <LI>VT100 ÅÍεĢȢ ANSI §äV[PX(J[wè)ÉàεĢܷB</LI> - <LI>Bold (²)®«Ì¶ÉεÄAbold X^CÌtHgÌgp/sgpªIðÅ«AܽFðt¯Ä\¦·é±ÆªÅ«Ü·B</LI> - <LI>Blink (_Å)®«Ì¶ÍÀÛÉÍ_Ź¸AFt«¶Å\¦³êÜ·B</LI> - <LI>{p¶AVT52 [hÉÍεĢܹñB</LI> - <LI>Tektronix TEK4010 ÆãÊ@íÌê</LI> -</UL> +<ul> + <li>DEC VT100 Æ VT200/300/400/500 Ìê</li> + <li>VT100 ÅÍεĢȢ ANSI §äV[PX(J[wè)ÉàεĢܷB</li> + <li>xtermg£Ì§äV[PX(}EXÎâ256F\¦)ÉàεĢܷB</li> + <li>Bold (²)®«Ì¶ÉεÄAbold X^CÌtHgÌgp/sgpªIðÅ«AܽFðt¯Ä\¦·é±ÆªÅ«Ü·B</li> + <li>Blink (_Å)®«Ì¶ÍÀÛÉÍ_Ź¸AFt«¶Å\¦³êÜ·B</li> + <li>{p¶AVT52 [hÉÍεĢܹñB</li> + <li>Tektronix TEK4010 ÆãÊ@íÌê</li> +</ul> -</BODY> -</HTML> +</body> +</html> Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/ja/html/about/history.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -232,7 +232,7 @@ <li>}NR}h "<a href="../macro/command/setbaud.html">setbaud</a>" ÌøÉ{[[gÌlð¼ÚwèÅ«éæ¤Éµ½B</li> </ul></li> <li>VPB, HPB §äV[PXÉε½B</li> - <li><a href="../usage/tips/xterm.html#Bracketed">Bracketed Paste Mode</a>Éε½B</li> + <li><a href="../usage/tips/vim.html#Bracketed">Bracketed Paste Mode</a>Éε½B</li> <li>"t@CM" Æ "O" ÅÌ binary tO̵¢ðª£µ½B <ul> <li>teraterm.ini É LogBinary GgðÇÁµ½BftHgÍoffB</li> Modified: trunk/doc/ja/html/usage/tips/index.html =================================================================== --- trunk/doc/ja/html/usage/tips/index.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/ja/html/usage/tips/index.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -31,7 +31,7 @@ <LI><A HREF="not-c1-char.html">C1 §ä¶ðgpµÈ¢</A></LI> <LI><A HREF="incorrect-kanjiout.html">³µÈ¢ "Kanji-out" ðgpÂ\É·é</A></LI> <LI><A HREF="telnet_protocol.html">TELNET vgRÉÖAt¯é</A></LI> - <LI><A HREF="xterm.html">xterm</A></LI> + <LI><A HREF="vim.html">vim ©ç̧äV[PXÌgpá</A></LI> </UL> </BODY> Copied: trunk/doc/ja/html/usage/tips/vim.html (from rev 4275, trunk/doc/ja/html/usage/tips/xterm.html) =================================================================== --- trunk/doc/ja/html/usage/tips/vim.html (rev 0) +++ trunk/doc/ja/html/usage/tips/vim.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -0,0 +1,45 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> +<title>vim ©ç̧äV[PXÌgpá</title> +<meta http-equiv="Content-Style-Type" content="text/css"> +<link rel="stylesheet" href="../../style.css" type="text/css"> +</head> +<body> + +<h1>vim ©ç̧äV[PXÌgpá</h1> + +<h2><a name="Bracketed">Bracketed Paste Mode</a></h2> + +<p> +±Ì@\Í xterm g£ÅALøÉÈÁÄ¢éÆANbv{[h©çÌ\èt¯É¶ñÌOãÉÁÊÈV[PXðtÁ·éÆ¢¤àÌÅ·B<br> +ïÌIÉÍADECSET Ì 2004(<CSI>?2004h) ÅLøÉÈèA\èt¯É¶ñÌOÉ <ESC>200~, ãëÉ <ESC>201~ ªtæ¤ÉÈèÜ·B +</p> + +<p> +鼃 vim Ì .vimrc Ýèáð¦µÜ·B\èt¯Í©®Cfgª³øÉÈèÜ·B +</p> + +<pre> +if &term == "xterm" + let &t_ti = &t_ti . "\e[?2004h" + let &t_te = "\e[?2004l" . &t_te + let &pastetoggle = "\e[201~" + + function XTermPasteBegin(ret) + set paste + return a:ret + endfunction + + map <special> <expr> <Esc>[200~ XTermPasteBegin("0i") + imap <special> <expr> <Esc>[200~ XTermPasteBegin("") + cmap <special> <Esc>[200~ <nop> + cmap <special> <Esc>[201~ <nop> +endif +</pre> + + +</body> +</html> Deleted: trunk/doc/ja/html/usage/tips/xterm.html =================================================================== --- trunk/doc/ja/html/usage/tips/xterm.html 2011-03-29 15:39:25 UTC (rev 4401) +++ trunk/doc/ja/html/usage/tips/xterm.html 2011-03-29 15:41:00 UTC (rev 4402) @@ -1,45 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" - "http://www.w3.org/TR/html4/strict.dtd"> -<html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> -<title>xterm Ìqg</title> -<meta http-equiv="Content-Style-Type" content="text/css"> -<link rel="stylesheet" href="../../style.css" type="text/css"> -</head> -<body> - -<h1>xterm Ìqg</h1> - -<h2><a name="Bracketed">Bracketed Paste Mode</a></h2> - -<p> -±Ì@\Í xterm g£ÅALøÉÈÁÄ¢éÆANbv{[h©çÌ\èt¯É¶ñÌOãÉÁÊÈV[PXðtÁ·éÆ¢¤àÌÅ·B<br> -ïÌIÉÍADECSET Ì 2004(<CSI>?2004h) ÅLøÉÈèA\èt¯É¶ñÌOÉ <ESC>200~, ãëÉ <ESC>201~ ªtæ¤ÉÈèÜ·B -</p> - -<p> -鼃 vim Ì .vimrc Ýèáð¦µÜ·B\èt¯Í©®Cfgª³øÉÈèÜ·B -</p> - -<pre> -if &term == "xterm" - let &t_ti = &t_ti . "\e[?2004h" - let &t_te = "\e[?2004l" . &t_te - let &pastetoggle = "\e[201~" - - function XTermPasteBegin(ret) - set paste - return a:ret - endfunction - - map <special> <expr> <Esc>[200~ XTermPasteBegin("0i") - imap <special> <expr> <Esc>[200~ XTermPasteBegin("") - cmap <special> <Esc>[200~ <nop> - cmap <special> <Esc>[201~ <nop> -endif -</pre> - - -</body> -</html>