summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-06-25 22:34:47 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-06-25 22:34:55 +0200
commit98247645a796d81779f5ae77479710b46bf4ca93 (patch)
tree3f021a507c8e252f07037304121a950301ebd647 /lisp/emacs-lisp
parentbc780a46915326ea66ff51342f5e1158e124a677 (diff)
downloademacs-98247645a796d81779f5ae77479710b46bf4ca93.tar.gz
emacs-98247645a796d81779f5ae77479710b46bf4ca93.tar.bz2
emacs-98247645a796d81779f5ae77479710b46bf4ca93.zip
Move widen/narrow in tabulated lists to } and {
* doc/emacs/buffers.texi (Several Buffers): Document it. * lisp/emacs-lisp/tabulated-list.el (tabulated-list-mode-map): Move widen/narrow to `}' and `{'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/tabulated-list.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el
index 5617992aae8..63ae1f8c072 100644
--- a/lisp/emacs-lisp/tabulated-list.el
+++ b/lisp/emacs-lisp/tabulated-list.el
@@ -200,8 +200,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 "w" 'tabulated-list-widen-current-column)
- (define-key map "c" 'tabulated-list-narrow-current-column)
+ (define-key map "}" 'tabulated-list-widen-current-column)
+ (define-key map "{" 'tabulated-list-narrow-current-column)
(define-key map [follow-link] 'mouse-face)
(define-key map [mouse-2] 'mouse-select-window)
map)