update
[linguofeng.github.com.git] / pages / tools / Emacs.md
blob6c24c45e38cf0f790070c25ba11dc36c01a746d3
1 ---
2 layout: default
3 category: Tools
4 title: "Emacs"
5 description: "IDE"
6 ---
8 <section>
9     <div class="page-header">
10         <h1>一、安装 <small>当前环境:Ubuntu12.04</small></h1>
11     </div>
12 <pre>
13 $ sudo apt-get install emacs
14 </pre>
15 </section>
17 <section>
18     <div class="page-header">
19         <h1>二、基本操作</h1>
20     </div>
22     <h3>模式键</h3>
23 <pre>
24 C -- Ctrl
25 M -- Alt
26 s -- Super
27 S -- Shift
28 </pre>
30     <h3>常用的组合键</h3>
31 <pre>
32 C-x C-c        // 退出Emacs,表示先按下Ctrl+x后松开x再按c
33 C-x C-s        // 保存当前Buffer
34 C-x C-f        // 打开或新建文件
35 C-n            // 移动光标到下一行,n = Next
36 C-p            // 移动光标到上一行,p = Previous
37 C-k            // 删除一行,k = kill
38 M-x            // 执行命令,M = Alt,通常执行命令都是M开头
39 </pre>
40 </section>