Function: cider--process-file-to-string

cider--process-file-to-string is a byte-compiled function defined in cider-endpoint.el.

Signature

(cider--process-file-to-string PROGRAM &rest ARGS)

Documentation

Run PROGRAM with ARGS via process-file and return its output.

Honors default-directory, so it executes on the remote host when called from a TRAMP buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-endpoint.el
(defun cider--process-file-to-string (program &rest args)
  "Run PROGRAM with ARGS via `process-file' and return its output.
Honors `default-directory', so it executes on the remote host when
called from a TRAMP buffer."
  (with-temp-buffer
    (apply #'process-file program nil t nil args)
    (buffer-string)))