diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-24 16:45:54 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-24 16:45:54 +0200 |
commit | b72cd0c74682cf87799f324eb3dace5f1962baf0 (patch) | |
tree | b635f1c0c0fff299d3dba26737354dc8063f6cdc /lisp/emacs-lisp/tabulated-list.el | |
parent | 1ad3387600442af3030b97f219bc60ccafb356eb (diff) | |
download | emacs-b72cd0c74682cf87799f324eb3dace5f1962baf0.tar.gz emacs-b72cd0c74682cf87799f324eb3dace5f1962baf0.tar.bz2 emacs-b72cd0c74682cf87799f324eb3dace5f1962baf0.zip |
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.
Diffstat (limited to 'lisp/emacs-lisp/tabulated-list.el')
-rw-r--r-- | lisp/emacs-lisp/tabulated-list.el | 4 |
1 files 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) |