diff options
author | Eli Zaretskii <eliz@gnu.org> | 2017-11-04 16:28:25 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2017-11-04 16:28:25 +0200 |
commit | 93818eed8ab9840095911be7b0ca0f2104320ea0 (patch) | |
tree | 02b6f76e64fa8d9513027f09e4d24b0c6572341a /lisp/emacs-lisp/tabulated-list.el | |
parent | 1f1de8e872282a12c3c17315c54d99026af32db9 (diff) | |
download | emacs-93818eed8ab9840095911be7b0ca0f2104320ea0.tar.gz emacs-93818eed8ab9840095911be7b0ca0f2104320ea0.tar.bz2 emacs-93818eed8ab9840095911be7b0ca0f2104320ea0.zip |
Fix subtle problems in tabulated-list-mode with line numbers
* lisp/emacs-lisp/tabulated-list.el
(tabulated-list-watch-line-number-width): Call
tabulated-list-init-header instead of tabulated-list-revert.
(tabulated-list-window-scroll-function): New function.
(tabulated-list-mode): Put 'tabulated-list-window-scroll-function'
on the buffer-local 'window-scroll-functions' list.
Diffstat (limited to 'lisp/emacs-lisp/tabulated-list.el')
-rw-r--r-- | lisp/emacs-lisp/tabulated-list.el | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el index 73ddadfb805..3889ba8e587 100644 --- a/lisp/emacs-lisp/tabulated-list.el +++ b/lisp/emacs-lisp/tabulated-list.el @@ -603,7 +603,16 @@ With a numeric prefix argument N, sort the Nth column." (let ((lnum-width (tabulated-list-line-number-width))) (when (not (= tabulated-list--current-lnum-width lnum-width)) (setq-local tabulated-list--current-lnum-width lnum-width) - (tabulated-list-revert))))) + (tabulated-list-init-header))))) + +(defun tabulated-list-window-scroll-function (window _start) + (if display-line-numbers + (let ((lnum-width + (with-selected-window window + (line-number-display-width 'columns)))) + (when (not (= tabulated-list--current-lnum-width lnum-width)) + (setq-local tabulated-list--current-lnum-width lnum-width) + (tabulated-list-init-header))))) ;;; The mode definition: @@ -654,7 +663,9 @@ as the ewoc pretty-printer." ;; the line-number width needs to change due to scrolling. (setq-local tabulated-list--current-lnum-width 0) (add-hook 'pre-redisplay-functions - #'tabulated-list-watch-line-number-width nil t)) + #'tabulated-list-watch-line-number-width nil t) + (add-hook 'window-scroll-functions + #'tabulated-list-window-scroll-function nil t)) (put 'tabulated-list-mode 'mode-class 'special) |