]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix up key bindings in previous tabulated-list patch
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 24 Jun 2019 14:45:54 +0000 (16:45 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 24 Jun 2019 14:45:54 +0000 (16:45 +0200)
* 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

index 59a5d118ff75b497039507045c51c3f6840e02ad..05ce6912e0f66be8094c82371c9f54b35ca28a55 100644 (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)