emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master b72cd0c: Fix up key bindings in previous tabulated-


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master b72cd0c: Fix up key bindings in previous tabulated-list patch
Date: Mon, 24 Jun 2019 10:46:04 -0400 (EDT)

branch: master
commit b72cd0c74682cf87799f324eb3dace5f1962baf0
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    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 59a5d11..05ce691 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]