From: Lars Ingebrigtsen Date: Mon, 24 Jun 2019 14:45:54 +0000 (+0200) Subject: Fix up key bindings in previous tabulated-list patch X-Git-Tag: emacs-27.0.90~2267 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b72cd0c74682cf87799f324eb3dace5f1962baf0;p=emacs.git 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. --- 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)