diff options
| author | Lars Ingebrigtsen | 2019-06-24 16:45:54 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-06-24 16:45:54 +0200 |
| commit | b72cd0c74682cf87799f324eb3dace5f1962baf0 (patch) | |
| tree | b635f1c0c0fff299d3dba26737354dc8063f6cdc | |
| parent | 1ad3387600442af3030b97f219bc60ccafb356eb (diff) | |
| download | emacs-b72cd0c74682cf87799f324eb3dace5f1962baf0.tar.gz 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.
| -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." | |||
| 195 | (define-key map "n" 'next-line) | 195 | (define-key map "n" 'next-line) |
| 196 | (define-key map "p" 'previous-line) | 196 | (define-key map "p" 'previous-line) |
| 197 | (define-key map "S" 'tabulated-list-sort) | 197 | (define-key map "S" 'tabulated-list-sort) |
| 198 | (define-key map "e" 'tabulated-list-widen-current-column) | 198 | (define-key map "w" 'tabulated-list-widen-current-column) |
| 199 | (define-key map "s" 'tabulated-list-narrow-current-column) | 199 | (define-key map "c" 'tabulated-list-narrow-current-column) |
| 200 | (define-key map [follow-link] 'mouse-face) | 200 | (define-key map [follow-link] 'mouse-face) |
| 201 | (define-key map [mouse-2] 'mouse-select-window) | 201 | (define-key map [mouse-2] 'mouse-select-window) |
| 202 | map) | 202 | map) |