Function: with-editor-export-git-editor
with-editor-export-git-editor is an autoloaded, interactive and
byte-compiled function defined in with-editor.el.
Signature
(with-editor-export-git-editor &optional PROCESS INTERACTIVE)
Documentation
Like with-editor-export-editor but always set $GIT_EDITOR.
PROCESS is only intended for use by eat-exec-hook. When invoked
interactively, INTERACTIVE is non-nil, which supresses the call to
"clear".
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/with-editor-20260731.2234/with-editor.el
;;;###autoload
(defun with-editor-export-git-editor (&optional process interactive)
"Like `with-editor-export-editor' but always set `$GIT_EDITOR'.
PROCESS is only intended for use by `eat-exec-hook'. When invoked
interactively, INTERACTIVE is non-nil, which supresses the call to
\"clear\"."
(interactive (list nil t))
(with-editor-export-editor "GIT_EDITOR" process interactive))