Emacs显示行数
Emacs需要第三方插件显示行号
1 下载
linum.el
2 复制 linum.el 到“/usr/share/emacs/site-lisp/”或者其他 load-path路径下
3 配置 linum.el 到 ~/.emacs(
自动创建 .emacs:
启动emacs,用鼠标点击Options菜单,随便点击一两个选项,比如点击一下Active Region Highlighting,然后点击Save Options
)
;******************************************************** ; * ; * Author : sunboy_2050 ; * Date : 2012-07-31 ; * File : ~/.emacs ; * ; * ; ********************************************************/ (require 'linum) ;;; show line numbers in buffer ;;; run M-x linum-mode ;;; show line numbers in all buffers ;;; run M-x global-linum-mode (global-linum-mode t)
4 或者在Emacs下执行 M-x linum-mode 来显示或者取消行号
M-x : Alt + x
输入: linum-mode
5 配置效果如下:
参考推荐:
Emacs 快捷键
原文: Emacs显示行数
版权所有: 本文系米扑博客原创、转载、摘录,或修订后发表,最后更新于 2012-08-02 19:56:13
侵权处理: 本个人博客,不盈利,若侵犯了您的作品权,请联系博主删除,莫恶意,索钱财,感谢!
转载注明: Emacs显示行数 (米扑博客)