Function: marginalia--time-relative

marginalia--time-relative is a byte-compiled function defined in marginalia.el.

Signature

(marginalia--time-relative TIME)

Documentation

Format TIME as a relative age.

Source Code

;; Defined in ~/.emacs.d/elpa/marginalia-20260724.810/marginalia.el
(defun marginalia--time-relative (time)
  "Format TIME as a relative age."
  (setq time (max 0 (float-time (time-since time))))
  (concat (compat-call seconds-to-string time 'expanded 'abbrev) " ago"))