From b72cd0c74682cf87799f324eb3dace5f1962baf0 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 24 Jun 2019 16:45:54 +0200 Subject: [PATCH] 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. --- lisp/emacs-lisp/tabulated-list.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el index 59a5d118ff7..05ce6912e0f 100644 --- a/lisp/emacs-lisp/tabulated-list.el +++ b/lisp/emacs-lisp/tabulated-list.el @@ -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) -- 2.39.5