]> git.eshelyaron.com Git - emacs.git/commitdiff
Move widen/narrow in tabulated lists to } and {
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 25 Jun 2019 20:34:47 +0000 (22:34 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 25 Jun 2019 20:34:55 +0000 (22:34 +0200)
* doc/emacs/buffers.texi (Several Buffers): Document it.

* lisp/emacs-lisp/tabulated-list.el (tabulated-list-mode-map):
Move widen/narrow to `}' and `{'.

doc/emacs/buffers.texi
lisp/emacs-lisp/tabulated-list.el

index 6face1e73cbc1438672060b577906e3c141bccb5..089cfdf0a6868e93041674ae0a6c5402cb9b145b 100644 (file)
@@ -550,16 +550,16 @@ Sort the Buffer Menu entries according to their values in the column
 at point.  With a numeric prefix argument @var{n}, sort according to
 the @var{n}-th column (@code{tabulated-list-sort}).
 
-@item w
-@kindex w @r{(Buffer Menu)}
+@item }
+@kindex } @r{(Buffer Menu)}
 @findex tabulated-list-widen-current-column
 Widen the current column width by @var{n} (the prefix numeric
 argument) characters.
 
-@item c
-@kindex c @r{(Buffer Menu)}
+@item {
+@kindex { @r{(Buffer Menu)}
 @findex tabulated-list-narrow-current-column
-Make the current column contract its width by @var{n} (the prefix numeric
+Narrow the current column width by @var{n} (the prefix numeric
 argument) characters.
 
 @item T
index 5617992aae879b48c00bf10fcd91fb03db2ac4cf..63ae1f8c07288918a1cd83bb9fc48ea56e7e81a2 100644 (file)
@@ -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)