emacs
文章平均质量分 80
shenyan008
这个作者很懒,什么都没留下…
展开
-
emacs 字符编码 笔记
环境:Ubuntu 10.10 Emacs 23.1.1 设置默认的缓冲编码,即设置新建文件默认保存字符编码(如:utf-8, euc-cn): (setq default-buffer-coding-system utf-8) (euc-cn就是字符集GB2312采用的编码格式,每个字符用2个字节表示。) unicad可以自动识别文件编码格式,直接安原创 2011-06-10 20:18:00 · 3011 阅读 · 0 评论 -
emacs Bookmark Plus 代码浏览/导航
1. 内置命令pop-global-mark, 一般绑定在C-x C-@ 或者 C-x C-SPC;pop-tag-mark, M-*, 返回到调用M-.的地方;C-u C-SPC,返回到前面mark的位置,最多16个,参考:Mark Ring2. Bookmark plus参考:http://emacswiki.org/emacs/Bookma原创 2012-05-21 00:56:24 · 5572 阅读 · 0 评论 -
Emacs: How to Define Templates in YASnippet
Emacs: How to Define Templates in YASnippetby Xah Lee, 2009-02-18, …, 2012-03-25This page shows you how to define your own templates for emacs's YASnippet template system. If you don't know wh转载 2012-05-21 18:04:46 · 829 阅读 · 0 评论 -
org tutorial
org tutorialhttp://dto.github.com/notebook/orgtutorial.htmlIntroduction Org-mode is a personal information management and outlining tool forEmacs. This document is intended to give the rea转载 2012-05-22 01:15:18 · 672 阅读 · 0 评论 -
GNU GLOBAL 笔记
1. 安装配置:1. 先安装global,yum或者apt源里面有,也可以源码安装;2. 要用再emacs上,需要下载源码包:http://tamacom.com/global/global-6.2.tar.gz,解压,复制源码包根目录下面的gtags.el到emacs的load-path的一个目录下,再.emacs中加入:(autoload 'gtags-mode "gtags"原创 2012-02-23 12:54:50 · 3449 阅读 · 0 评论 -
emacs TAGS etags
1. 创建TAGSetags file-listfind . -name "*.[chCH]" -print | etags -find . -print -name "*.[chCH]" -o -name "*.cpp" | etags - #-print需要提前,否则没有输出# find参数-maxdepth n 可以指定搜索层数2. 相对路径、绝对路径原创 2012-03-06 23:28:00 · 1734 阅读 · 0 评论 -
ECB 笔记
0. tree-buffer:ecb每个窗口对应一个buffer,因为窗口元素都是按照树形组织的,所以叫 tree-buffer配置配置ECB帮助(setq Info-default-directory-list (append Info-default-directory-list '("~/.emac原创 2012-02-02 23:46:29 · 1310 阅读 · 0 评论 -
emacs 中文输入法 设置
中文输入法设置参考:http://blog.csdn.net/binglinlee/archive/2011/03/06/6226421.aspx ubuntu x locale 设置:http://javaite.blog.163.com/blog/static/1851634662011327112410659/关于locale的设定,为什么要设定locale:ht原创 2011-06-10 23:35:00 · 808 阅读 · 0 评论 -
emacs 笔记 内置变量
通过C-h v查询1. load-path*List of directories to search for files to load.(加载的是.el文件,emacs lisp源文件)Each element is a string (directory原创 2011-09-01 20:04:55 · 574 阅读 · 0 评论 -
Linux下emacs如何如X-Window系统共享剪贴板
最简单的方法:(原文链接:http://www.linuxforum.net/forum/showflat.php?Board=program&Number=490888) (setq x-select-enable-clipboard t) 其次,如果仍然想转载 2011-09-01 21:52:52 · 1602 阅读 · 0 评论 -
emacs 安装 CEDET ECB 笔记
1. 按照 CEDET 的 simple setup 配置 CEDET。http://cedet.sourceforge.net/setup.shtml2. 按照 ECB 的 installation 安装 ECB。http://ecb.sourceforge.net/2.1 为支持java开发环境,安装JDEE 2.1.1 安装 JDEE 之前安装 elib,源里原创 2011-09-03 21:07:40 · 739 阅读 · 0 评论 -
GNU Info System 使用笔记
0. info的manualstand-alone info,在shell下面,$info info,进入后按大写的H,可以查看info的简单帮助,还有info搜索的路径;在emacs下面的info,C-h r进入emacs帮助文档后,按h进入;两者的manual内容是一样的。1.浏览 SPC:向前翻一屏:向后翻一屏[:上一节点,认为所有节点都是同一级的原创 2012-02-11 00:16:09 · 585 阅读 · 0 评论 -
emacs 笔记 常用功能 配置
load-path 配置load-path 用于配置库文件的查找,参考:Load-Path from emacswiki.org是否自动保存原文件第一次存盘前Emacs 会将原文件重命名以备份。重命名的规则通常是在原文件名之后添加一个“~”字符。是否开启这个特性,可以通过make-backpakup-files选项配置:M-x customize-variabl原创 2011-09-04 21:14:19 · 789 阅读 · 0 评论 -
Emacs Keybinding Syntax Examples
Emacs Keybinding Syntax ExamplesHere are sample code you need to place in your emacs init file for defining various key press combinations.In the following, the beep is a example command. Replace转载 2012-04-13 01:30:50 · 997 阅读 · 0 评论 -
Emacs: How to Define Keyboard Shortcuts
Emacs: How to Define Keyboard Shortcuts标记一下该网站:http://xahlee.org/emacs/emacs.html,Xah Emacs TutorialBy Xah Lee, 2005, …, 2012-04-05In emacs, you can create any keyboard shortcut to any com转载 2012-04-13 01:33:42 · 1372 阅读 · 0 评论 -
Emacs 笔记 常用快捷键和命令
C: Ctrl M: Meta/AltRET: 回车在终端中运行Emacsemacs -nw/-no-window-system:emacs不启动X界面;放大缩小字体 Zooming (emacs 23有效)C-x C-+/=: 放大, text-scale-increase,text-scale-adjust RET +C-x原创 2011-09-01 19:59:11 · 1805 阅读 · 0 评论