OSDN Git Service

f46be2c715bf4f049045f576c3e14bfed4bae772
[moreemacs/moreemacs.git] / jp.sourceforge.moreemacs.web / WebContent / index.html
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\r
3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\r
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">\r
5 <head>\r
6 <link rel='stylesheet' type='text/css' href='style.css'/>\r
7 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>\r
8 <title>More Emacs Plugin</title>\r
9 </head>\r
10 <body>\r
11 <h1>More Emacs Plugin</h1>\r
12 <p>More Emacs Plugin is an eclipse plugin for emacs users.</p>\r
13 <p>Eclipse provides the emacs like key bindings. But emacs users requires \r
14 more emacs like key bindings. More emacs plugin provides more emacs like key bindings.\r
15 The key bind scheme of more emacs is a child schema of Eclispe's emacs scheme.\r
16 It adds some key bindings or overrides some bindings to emacs scheme.\r
17 </p>\r
18 \r
19 <h2>Install</h2>\r
20 <p>You can install the plugin from\r
21  <a href="http://moreemacs.sourceforge.jp/update-site">http://moreemacs.sourceforge.jp/update-site</a>.</p>\r
22 <p>Open the preferences dialog and General/Keys. Choose "More Emacs" from "Scheme" pull down.</p>\r
23 <div class="chart"><img src="settings.png" alt="settings" /></div>\r
24 \r
25 \r
26 <h2>Key Bindings</h2>\r
27 <p>\r
28 The following list is key bindings of more emacs plugin.\r
29 </p>\r
30 \r
31 <table border="2">\r
32 <caption>Key bindings of More Emacs</caption>\r
33 <tr>\r
34 <th>function</th>\r
35 <th>binding</th>\r
36 <th>description</th>\r
37 </tr>\r
38 <tr>\r
39 <td>undo</td>\r
40 <td>C-/</td>\r
41 <td>rebind</td>\r
42 </tr>\r
43 <tr>\r
44 <td>delete previous</td>\r
45 <td>C-h</td>\r
46 <td>rebind</td>\r
47 </tr>\r
48 <tr>\r
49 <td>next editor</td>\r
50 <td>C-x o, Shift-Tab</td>\r
51 <td>rebind</td>\r
52 </tr>\r
53 <tr>\r
54 <td>previous editor</td>\r
55 <td>C-Shift-Tab</td>\r
56 <td>rebind</td>\r
57 </tr>\r
58 <tr>\r
59 <td>file close</td>\r
60 <td>C-x 0</td>\r
61 <td>rebind</td>\r
62 </tr>\r
63 <tr>\r
64 <td>maximize part</td>\r
65 <td>C-x 1</td>\r
66 <td>rebind</td>\r
67 </tr>\r
68 <tr>\r
69 <td>new editor</td>\r
70 <td>C-x 2</td>\r
71 <td>rebind</td>\r
72 </tr>\r
73 <tr>\r
74 <td>find replace</td>\r
75 <td>M-Shift-5</td>\r
76 <td>rebind</td>\r
77 </tr>\r
78 <tr>\r
79 <td>return</td>\r
80 <td>C-m</td>\r
81 <td>rebind</td>\r
82 </tr>\r
83 <tr>\r
84 <td>move-beginning-of-line</td>\r
85 <td>C-a</td>\r
86 <td>moves the cursor to 0th column, not to the first non-space char of the line.</td>\r
87 </tr>\r
88 <tr>\r
89 <td>move-end-of-line</td>\r
90 <td>C-e</td>\r
91 <td></td>\r
92 </tr>\r
93 <tr>\r
94 <td>forward-word</td>\r
95 <td>M-f</td>\r
96 <td>moves the cursor to the end of word, not to the first char of the next word.\r
97 Only Character.isLetterOrDigit() is used to word-break.\r
98 It is very simple but predictable.\r
99 </td>\r
100 </tr>\r
101 <tr>\r
102 <td>backward-word</td>\r
103 <td>M-b</td>\r
104 <td></td>\r
105 </tr>\r
106 <tr>\r
107 <td>kill-word</td>\r
108 <td>M-d</td>\r
109 <td></td>\r
110 </tr>\r
111 <tr>\r
112 <td>backward-kill-word</td>\r
113 <td>M-BS</td>\r
114 <td></td>\r
115 </tr>\r
116 <tr>\r
117 <td>delete-horizontal-space</td>\r
118 <td>M-\</td>\r
119 <td></td>\r
120 </tr>\r
121 <tr>\r
122 <td>kill-line</td>\r
123 <td>C-k</td>\r
124 <td></td>\r
125 </tr>\r
126 <tr>\r
127 <td>transpose-chars</td>\r
128 <td>C-t</td>\r
129 <td></td>\r
130 </tr>\r
131 <tr>\r
132 <td>transpose-words</td>\r
133 <td>M-t</td>\r
134 <td></td>\r
135 </tr>\r
136 <tr>\r
137 <td>kill-rectangle</td>\r
138 <td>C-x r k</td>\r
139 <td>East Asian Width supported</td>\r
140 </tr>\r
141 <tr>\r
142 <td>yank-rectangle</td>\r
143 <td>C-x r y</td>\r
144 <td>East Asian Width supported</td>\r
145 </tr>\r
146 <tr>\r
147 <td>open-line</td>\r
148 <td>C-o</td>\r
149 <td></td>\r
150 </tr>\r
151 <tr>\r
152 <td>upcase-word</td>\r
153 <td>M-u</td>\r
154 <td></td>\r
155 </tr>\r
156 <tr>\r
157 <td>downcase-word</td>\r
158 <td>M-l</td>\r
159 <td></td>\r
160 </tr>\r
161 <tr>\r
162 <td>capitalize-word</td>\r
163 <td>M-c</td>\r
164 <td></td>\r
165 </tr>\r
166 </table>\r
167 \r
168 <h2>Unicode</h2>\r
169 <ul>\r
170 <li>The supplementary characters are supported.\r
171 All characters are treated as code point.\r
172 </li>\r
173 <li>East Asian Width is supported.\r
174 In the column calculation of rectangle operation, the width of ambiguous characters are 2 for CJK languages\r
175  and 1 for other languages.\r
176 </li>\r
177 </ul>\r
178 \r
179 \r
180 <h2>Change Log</h2>\r
181 <h3>2009.7.28</h3>\r
182 <ul>\r
183 <li>Fix rectangle action.</li>\r
184 <li>Add the followings.\r
185 <ul>\r
186 <li>upcase-word</li>\r
187 <li>downcase-word</li>\r
188 <li>capitalize-word</li>\r
189 </ul>\r
190 </li>\r
191 <li>Release 1.1.0</li>\r
192 </ul>\r
193 <h3>2009.6.14</h3>\r
194 <ul>\r
195 <li>Release 1.0.0</li>\r
196 </ul>\r
197 \r
198 <h2>Links</h2>\r
199 <ul>\r
200 <li><a href="https://sourceforge.jp/projects/moreemacs/simple">More Emacs Plugin SourceForge Project</a></li>\r
201 </ul>\r
202 </body>\r
203 </html>\r