Emacs相关笔记¶
常用命令¶
- 切换缓存区:C-o
- 水平新建缓存区:C-2
- 垂直新建缓存区:C-3
- 关闭当前缓存区:C-0
- 删除缓存区:C-k
- 只保留当前缓存区:C-1
Emacs使用Fcitx中文¶
参考博客:fcitx-emacs
Step 1: 确定系统当前支持的字符集¶
locale -a
若其中有zh_CN.utf8,则表明已经包含了中文字符集。
Step 2: 设置系统变量¶
emacs ~/.bashrc
export LC_CTYPE=zh_CN.utf8
source ~/.bashrc
Emacs配置文件¶
参考 http://download.csdn.net/download/karotte/3812760