Function: tabulated-list-put-tag
tabulated-list-put-tag is a byte-compiled function defined in
tabulated-list.el.gz.
Signature
(tabulated-list-put-tag TAG &optional ADVANCE)
Documentation
Put TAG in the padding area of the current line.
TAG should be a string, with length <= tabulated-list-padding.
If ADVANCE is non-nil, move forward by one line afterwards.
Probably introduced at or before Emacs version 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defun tabulated-list-put-tag (tag &optional advance)
"Put TAG in the padding area of the current line.
TAG should be a string, with length <= `tabulated-list-padding'.
If ADVANCE is non-nil, move forward by one line afterwards."
(unless (stringp tag)
(error "Invalid argument to `tabulated-list-put-tag'"))
(unless (> tabulated-list-padding 0)
(error "Unable to tag the current line"))
(save-excursion
(beginning-of-line)
(when (tabulated-list-get-entry)
(let ((beg (point))
(inhibit-read-only t))
(forward-char tabulated-list-padding)
(insert-and-inherit
(let ((width (string-width tag)))
(if (<= width tabulated-list-padding)
(concat tag
(make-string (- tabulated-list-padding width) ?\s))
(truncate-string-to-width tag tabulated-list-padding))))
(delete-region beg (+ beg tabulated-list-padding)))))
(if advance
(forward-line)))