Fix up key bindings in previous tabulated-list patch

* lisp/emacs-lisp/tabulated-list.el (tabulated-list-mode-map):
Actually use `w'/`c' as described in previous patch.
This commit is contained in:
Lars Ingebrigtsen 2019-06-24 16:45:54 +02:00
parent 1ad3387600
commit b72cd0c746

View file

@ -195,8 +195,8 @@ If ADVANCE is non-nil, move forward by one line afterwards."
(define-key map "n" 'next-line)
(define-key map "p" 'previous-line)
(define-key map "S" 'tabulated-list-sort)
(define-key map "e" 'tabulated-list-widen-current-column)
(define-key map "s" 'tabulated-list-narrow-current-column)
(define-key map "w" 'tabulated-list-widen-current-column)
(define-key map "c" 'tabulated-list-narrow-current-column)
(define-key map [follow-link] 'mouse-face)
(define-key map [mouse-2] 'mouse-select-window)
map)