
emacs lisp
文章平均质量分 54
dophiJing
for(i = 0; i < 100 * 365; i++) obtain = obtain * (1 + step)^n;
// step is my future
展开
-
emacs 字体配置
;; 方法一 能够执行(from:http://bugway.appspot.com/?p=945801) ;; overide the default changing font size bindings;; to make changing more subtle(defun local-increase-font-size () (interactive) (set-face-attr转载 2013-07-27 10:20:29 · 15553 阅读 · 0 评论 -
emacs23+添加行号,括号提示
今天用Emacs调代码的时候显示哪一行有问题,但是自己的Emacs又没有显示行号,google了一下,解决方法如下: M-x linum-mode 如何实现括号匹配呢?命令如下: M-x show-paren-mode 或者设置emacs在左边显示文档的行号 方法一: 使用 linum.el,这个是 emacs 自带的,在 .emacs 文件添加: (转载 2013-07-27 14:14:06 · 1109 阅读 · 0 评论 -
Emacs配置C/C++-mode的代码智能提示和自动补全
参考两篇博文,智能提示可以使用但是自我感觉不够强大,有待扩展 1,http://www.icodelogic.com/?p=404我的配置环境可能跟作者的不太相同,主要是在智能提示时显示找不到路径,问题出在一下几句,: 1 2 3 4 5 (add-to-list 'load-path "/usr/local/emacs23/my_plus/company-mo原创 2013-07-27 22:32:39 · 2393 阅读 · 0 评论