OSDN Git Service

32b980291309d203a6381d531f4e072d083d2f16
[moreemacs/moreemacs.git] / jp.sourceforge.moreemacs.web / WebContent / index.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel='stylesheet' type='text/css' href='style.css'/>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6 <title>More Emacs Plugin</title>
7 </head>
8 <body>
9 <h1>More Emacs Plugin</h1>
10 <p>More Emacs Plugin is an eclipse plugin for emacs users.</p>
11 <p>Eclipse provides the emacs like key bindings. But emacs users require
12 more emacs like key bindings. More emacs plugin provides more emacs like key bindings.
13 The key bind scheme of more emacs is a child schema of Eclispe's emacs scheme.
14 It adds some key bindings or overrides some bindings to emacs scheme.
15 </p>
16
17 <p>
18 Drag 'Install' button to your eclipse workspace.
19 <a href="http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=975" class="drag" title="Drag to your running Eclipse workspace to install More Emacs"><img src="https://marketplace.eclipse.org/sites/all/themes/solstice/_themes/solstice_marketplace/public/images/btn-install.png" alt="Drag to your running Eclipse workspace to install More Emacs" /></a>
20 </p>
21
22 <h2>Install</h2>
23 <p>You can install the plugin from <a href="https://marketplace.eclipse.org/content/more-emacs/">Eclipse Marketplace</a> or update site
24  <a href="http://moreemacs.sourceforge.jp/update-site">http://moreemacs.sourceforge.jp/update-site</a>.</p>
25 <p>Open the preferences dialog and General/Keys. Choose "More Emacs" from "Scheme" pull down.</p>
26 <div class="chart"><img src="settings.png" alt="settings" /></div>
27
28
29
30 <h2>Key Bindings</h2>
31 <p>
32 The following list is key bindings of more emacs plugin.
33 </p>
34
35 <table id="functions" class="flatTable">
36 <caption>Key bindings of More Emacs</caption>
37 <tr>
38 <th>function</th>
39 <th>binding</th>
40 <th>description</th>
41 </tr>
42 <tr>
43 <td>undo</td>
44 <td>C-/</td>
45 <td>rebind</td>
46 </tr>
47 <tr>
48 <td>delete previous</td>
49 <td>C-h</td>
50 <td>rebind</td>
51 </tr>
52 <tr>
53 <td>next editor</td>
54 <td>C-x o<br>Shift-Tab</td>
55 <td>rebind</td>
56 </tr>
57 <tr>
58 <td>previous editor</td>
59 <td>C-Shift-Tab</td>
60 <td>rebind</td>
61 </tr>
62 <tr>
63 <td>file close</td>
64 <td>C-x 0</td>
65 <td>rebind</td>
66 </tr>
67 <tr>
68 <td>maximize part</td>
69 <td>C-x 1</td>
70 <td>rebind</td>
71 </tr>
72 <tr>
73 <td>new editor</td>
74 <td>C-x 2</td>
75 <td>rebind</td>
76 </tr>
77 <tr>
78 <td>find replace</td>
79 <td>M-S-5</td>
80 <td>rebind</td>
81 </tr>
82 <tr>
83 <td>newline-and-indent</td>
84 <td>C-j</td>
85 <td>rebind</td>
86 </tr>
87 <tr>
88 <td>back-to-indentation</td>
89 <td>M-m</td>
90 <td>rebind</td>
91 </tr>
92 <tr>
93 <td>move-beginning-of-line</td>
94 <td>C-a</td>
95 <td>moves the cursor to 0th column, not to the first non-space char of the line.</td>
96 </tr>
97 <tr>
98 <td>move-end-of-line</td>
99 <td>C-e</td>
100 <td></td>
101 </tr>
102 <tr>
103 <td>forward-word</td>
104 <td>M-f</td>
105 <td>moves the cursor to the end of word, not to the first char of the next word.
106 Only Character.isLetterOrDigit() is used to word-break.
107 It is very simple but predictable.
108 </td>
109 </tr>
110 <tr>
111 <td>backward-word</td>
112 <td>M-b</td>
113 <td></td>
114 </tr>
115 <tr>
116 <td>kill-word</td>
117 <td>M-d</td>
118 <td></td>
119 </tr>
120 <tr>
121 <td>backward-kill-word</td>
122 <td>M-BS</td>
123 <td></td>
124 </tr>
125 <tr>
126 <td>delete-horizontal-space</td>
127 <td>M-\</td>
128 <td></td>
129 </tr>
130 <tr>
131 <td>kill-line</td>
132 <td>C-k</td>
133 <td></td>
134 </tr>
135 <tr>
136 <td>transpose-chars</td>
137 <td>C-t</td>
138 <td></td>
139 </tr>
140 <tr>
141 <td>transpose-words</td>
142 <td>M-t</td>
143 <td></td>
144 </tr>
145 <tr>
146 <td>kill-rectangle</td>
147 <td>C-x r k</td>
148 <td>East Asian Width supported</td>
149 </tr>
150 <tr>
151 <td>yank-rectangle</td>
152 <td>C-x r y</td>
153 <td>East Asian Width supported</td>
154 </tr>
155 <tr>
156 <td>newline</td>
157 <td>C-m</td>
158 <td></td>
159 </tr>
160 <tr>
161 <td>open-line</td>
162 <td>C-o</td>
163 <td></td>
164 </tr>
165 <tr>
166 <td>upcase-word</td>
167 <td>M-u</td>
168 <td></td>
169 </tr>
170 <tr>
171 <td>downcase-word</td>
172 <td>M-l</td>
173 <td></td>
174 </tr>
175 <tr>
176 <td>capitalize-word</td>
177 <td>M-c</td>
178 <td></td>
179 </tr>
180 <tr>
181 <td>comment-region</td>
182 <td>C-c C-c<br/>C-u C-c C-c</td>
183 <td>forward to toggle comment</td>
184 </tr>
185 </table>
186
187 <h2>Unicode</h2>
188 <ul>
189 <li>The supplementary characters are supported.
190 All characters are treated as code point.
191
192 <li>East Asian Width is supported.
193 In the column calculation of rectangle operation, the width of ambiguous characters are 2 for CJK languages
194  and 1 for other languages.
195
196 </ul>
197
198
199 <h2>Change Log</h2>
200 <h3>2015.3.15</h3>
201 <ul>
202 <li>Release 2.0.0
203 <li>Support Eclipse4.x
204 </ul>
205 <h3>2009.8.20</h3>
206 <ul>
207 <li>Release 1.2.0
208 </ul>
209 <h3>2009.8.4</h3>
210 <ul>
211 <li>Added newline, and assigned to C-m
212 <li>Added back-to-indentation
213 </ul>
214 <h3>2009.8.1</h3>
215 <ul>
216 <li>Added comment-region
217 <li>Rebinded C-j
218 </ul>
219 <h3>2009.7.28</h3>
220 <ul>
221 <li>Fix rectangle action.
222 <li>Add the followings.
223 <ul>
224 <li>upcase-word
225 <li>downcase-word
226 <li>capitalize-word
227 </ul>
228
229 <li>Release 1.1.0
230 </ul>
231 <h3>2009.6.14</h3>
232 <ul>
233 <li>Release 1.0.0
234 </ul>
235
236 <h2>Links</h2>
237 <ul>
238 <li><a href="https://sourceforge.jp/projects/moreemacs/simple">More Emacs Plugin SourceForge Project</a>
239 <li><a href="https://marketplace.eclipse.org/content/more-emacs">Eclipse Market</a>
240 </ul>
241 </body>
242 </html>