OSDN Git Service

added description
authorquiver2k <quiver2k@users.sourceforge.jp>
Tue, 28 Jul 2009 14:27:01 +0000 (23:27 +0900)
committerquiver2k <quiver2k@users.sourceforge.jp>
Tue, 28 Jul 2009 14:27:01 +0000 (23:27 +0900)
jp.sourceforge.moreemacs.web/WebContent/index.html

index cdead8c..d80fea0 100644 (file)
@@ -22,6 +22,7 @@ It adds some key bindings or overrides some bindings to emacs scheme.
 <p>Open the preferences dialog and General/Keys. Choose "More Emacs" from "Scheme" pull down.</p>\r
 <div class="chart"><img src="settings.png" alt="settings" /></div>\r
 \r
+\r
 <h2>Key Bindings</h2>\r
 <p>\r
 The following list is key bindings of more emacs plugin.\r
@@ -32,110 +33,150 @@ The following list is key bindings of more emacs plugin.
 <tr>\r
 <th>function</th>\r
 <th>binding</th>\r
+<th>description</th>\r
 </tr>\r
 <tr>\r
 <td>undo</td>\r
 <td>C-/</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>delete previous</td>\r
 <td>C-h</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>next editor</td>\r
 <td>C-x o, Shift-Tab</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>previous editor</td>\r
 <td>C-Shift-Tab</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>file close</td>\r
 <td>C-x 0</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>maximize part</td>\r
 <td>C-x 1</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>new editor</td>\r
 <td>C-x 2</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>find replace</td>\r
 <td>M-Shift-5</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>return</td>\r
 <td>C-m</td>\r
+<td>rebind</td>\r
 </tr>\r
 <tr>\r
 <td>move-beginning-of-line</td>\r
 <td>C-a</td>\r
+<td>moves the cursor to 0th column, not to the first non-space char of line.</td>\r
 </tr>\r
 <tr>\r
 <td>move-end-of-line</td>\r
 <td>C-e</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>forward-word</td>\r
 <td>M-f</td>\r
+<td>moves the cursor to the end of word, not to the first char of the next word.\r
+Only Character.isLetterOrDigit() is used to word-break.\r
+It is very simple but predictable.\r
+</td>\r
 </tr>\r
 <tr>\r
 <td>backward-word</td>\r
 <td>M-b</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>kill-word</td>\r
 <td>M-d</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>backward-kill-word</td>\r
 <td>M-BS</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>delete-horizontal-space</td>\r
 <td>M-\</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>kill-line</td>\r
 <td>C-k</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>transpose-chars</td>\r
 <td>C-t</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>transpose-words</td>\r
 <td>M-t</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>kill-rectangle</td>\r
 <td>C-x r k</td>\r
+<td>East Asian Width supported</td>\r
 </tr>\r
 <tr>\r
 <td>yank-rectangle</td>\r
 <td>C-x r y</td>\r
+<td>East Asian Width supported</td>\r
 </tr>\r
 <tr>\r
 <td>open-line</td>\r
 <td>C-o</td>\r
+<td></td>\r
 </tr>\r
-\r
 <tr>\r
 <td>upcase-word</td>\r
 <td>M-u</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>downcase-word</td>\r
 <td>M-l</td>\r
+<td></td>\r
 </tr>\r
 <tr>\r
 <td>capitalize-word</td>\r
 <td>M-c</td>\r
+<td></td>\r
 </tr>\r
 </table>\r
 \r
+<h2>Unicode</h2>\r
+<ul>\r
+<li>The Supplementary characters are supported.\r
+All characters are treated as code point.\r
+</li>\r
+<li>East Asian Width is supported.\r
+In column calculation, the width of ambiguous characters are 2 for CJK languages\r
+ and 1 for other languages.\r
+</li>\r
+</ul>\r
+\r
+\r
 <h2>Change Log</h2>\r
 <h3>2009.7.28</h3>\r
 <ul>\r