Function: ghub--graphql-set-mode-line

ghub--graphql-set-mode-line is a byte-compiled function defined in ghub-graphql.el.

Signature

(ghub--graphql-set-mode-line REQ &optional FORMAT &rest ARGS)

Source Code

;; Defined in ~/.emacs.d/elpa/ghub-20260401.1239/ghub-graphql.el
(defun ghub--graphql-set-mode-line (req &optional format &rest args)
  (let ((buffer (ghub--graphql-req-buffer req)))
    (when (buffer-live-p buffer)
      (with-current-buffer buffer
        (setq mode-line-process
              (and format (concat " " (apply #'format format args))))
        (force-mode-line-update t)))))