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)}
+@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)}
+@findex tabulated-list-narrow-current-column
+Make the current column contract its width by @var{n} (the prefix numeric
+argument) characters.
+
@item T
@findex Buffer-menu-toggle-files-only
@kindex T @r{(Buffer Menu)}
'tabulated-list-tty-sort-indicator-asc', and
'tabulated-list-tty-sort-indicator-desc').
++++
+*** Two new commands and keystrokes have been added to the tabulated
+list mode: `w' (which widens the current column) and `c' which makes
+the current column contract.
+
** Text mode
+++
(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 [follow-link] 'mouse-face)
(define-key map [mouse-2] 'mouse-select-window)
map)
(tabulated-list-init-header)
(tabulated-list-print t)))
+(defun tabulated-list-widen-current-column (&optional n)
+ "Widen the current tabulated-list column by N chars.
+Interactively, N is the prefix numeric argument, and defaults to
+1."
+ (interactive "p")
+ (let ((start (current-column))
+ (nb-cols (length tabulated-list-format))
+ (col-nb 0)
+ (total-width 0)
+ (found nil)
+ col-width)
+ (while (and (not found)
+ (< col-nb nb-cols))
+ (if (> start
+ (setq total-width
+ (+ total-width
+ (setq col-width
+ (cadr (aref tabulated-list-format
+ col-nb))))))
+ (setq col-nb (1+ col-nb))
+ (setq found t)
+ (setf (cadr (aref tabulated-list-format col-nb))
+ (max 1 (+ col-width n)))
+ (tabulated-list-print t)
+ (tabulated-list-init-header)))))
+
+(defun tabulated-list-narrow-current-column (&optional n)
+ "Narrow the current tabulated list column by N chars.
+Interactively, N is the prefix numeric argument, and defaults to
+1."
+ (interactive "p")
+ (tabulated-list-widen-current-column (- n)))
+
(defvar tabulated-list--current-lnum-width nil)
(defun tabulated-list-watch-line-number-width (_window)
(if display-line-numbers