Function: helpful--indent-rigidly

helpful--indent-rigidly is a byte-compiled function defined in helpful.el.

Signature

(helpful--indent-rigidly S AMOUNT)

Documentation

Indent string S by adding AMOUNT spaces to each line.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--indent-rigidly (s amount)
  "Indent string S by adding AMOUNT spaces to each line."
  (with-temp-buffer
    (insert s)
    (indent-rigidly (point-min) (point-max) amount)
    (buffer-string)))