Function: tabulated-list-narrow-current-column
tabulated-list-narrow-current-column is an interactive and
byte-compiled function defined in tabulated-list.el.gz.
Signature
(tabulated-list-narrow-current-column &optional N)
Documentation
Narrow the current tabulated list column by N chars.
Interactively, N is the prefix numeric argument, and defaults to
1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(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)))