配置 Emacs 行号右对齐显示

落花浮王杯 提交于 2019-11-30 06:50:11

目录

  1. 配置文件
  2. 源码释义

配置文件

(global-linum-mode t)
(defadvice linum-update-window (around linum-dynamic activate)
  (let* ((w (length (number-to-string
             (count-lines (point-min) (point-max)))))
     (linum-format (concat "%" (number-to-string w) "d ")))
   ad-do-it))

源码释义

  1. (global-linum-mode t) 的含义为,在 Emacs 上的所有 buffers 中开启 linum-mode ,以显示行号。
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!