Emacs - 空行没有行号

时间:2016-07-21 12:47:41

标签: emacs line-numbers

我试图在Emacs中设置行号。
Linum效果很好,但是当我打开两个缓冲区时,空行的编号会消失。 我使用Manjaro Linux。 Emacs在终端工作。

Here's screenshot.

来自.emacs文件的代码:

(add-hook 'find-file-hook (lambda () (linum-mode 1)))

(unless window-system
  (add-hook 'linum-before-numbering-hook
    (lambda ()
      (setq-local linum-format-fmt
          (let ((w (length (number-to-string
                (count-lines (point-min) (point-max))))))
            (concat "%"(number-to-string w) "d"))))))

(defun linum-format-func (line)
  (concat
   (propertize (format linum-format-fmt line) 'face 'linum)
   (propertize " " 'face 'mode-line)))

(unless window-system
  (setq linum-format 'linum-format-func))

我该如何解决?

1 个答案:

答案 0 :(得分:5)

  1. 您可以通过使用

    替换上述代码的所有来解决此问题
    (global-linum-mode 1)
    
  2. linum-mode应该已经做了变量大小格式的事情 您。不知道你为什么要重新发明轮子。

  3. 也许您的问题是您尝试将concat两个propertize - d个字符串串起来。您可以通过将格式设置为"%3d "而不是"%3d"并稍后连接" "来避免这种情况:

    (add-hook 'find-file-hook (lambda () (linum-mode 1)))
    
    (unless window-system
      (add-hook 'linum-before-numbering-hook
        (lambda ()
          (setq-local linum-format-fmt
              (let ((w (length (number-to-string
                    (count-lines (point-min) (point-max))))))
                (concat "%" (number-to-string w) "d "))))))
    
    (defun linum-format-func (line)
      (propertize (format linum-format-fmt line) 'face 'linum))
    
    (unless window-system
      (setq linum-format 'linum-format-func))