]> git.eshelyaron.com Git - emacs.git/commitdiff
Adapt tabulated list when display-line-number is turned on
authorEli Zaretskii <eliz@gnu.org>
Sat, 12 Aug 2017 09:45:05 +0000 (12:45 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 12 Aug 2017 09:45:05 +0000 (12:45 +0300)
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-mode): Add
a hook to revert the display when display-line-numbers is turned
on.  (Bug#27895)

lisp/emacs-lisp/tabulated-list.el

index b91532f7e83a6d14d0fe39296a09ffc1bb514d60..955b664b8c5402be246887a802a9ba744f521ef2 100644 (file)
@@ -628,7 +628,9 @@ as the ewoc pretty-printer."
   (setq-local glyphless-char-display tabulated-list-glyphless-char-display)
   ;; Avoid messing up the entries' display just because the first
   ;; column of the first entry happens to begin with a R2L letter.
-  (setq bidi-paragraph-direction 'left-to-right))
+  (setq bidi-paragraph-direction 'left-to-right)
+  ;; This is for if/when they turn on display-line-numbers
+  (add-hook 'display-line-numbers-mode-hook #'tabulated-list-revert nil t))
 
 (put 'tabulated-list-mode 'mode-class 'special)