Emacs需要第三方插件显示行号。
1,下载 linum.el:http://web.student.tuwien.ac.at/~e0225855/linum/linum.html
2,复制 linum.el 到“/usr/share/emacs/site-lisp/”或者其他 load-path路径下
3,配置 linum.el 到 ~/.emacs
;********************************************************
; *
; * 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