Function: with-editor-export-hg-editor
with-editor-export-hg-editor is an autoloaded, interactive and
byte-compiled function defined in with-editor.el.
Signature
(with-editor-export-hg-editor &optional PROCESS INTERACTIVE)
Documentation
Like with-editor-export-editor but always set $HG_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-hg-editor (&optional process interactive)
"Like `with-editor-export-editor' but always set `$HG_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 "HG_EDITOR" process interactive))