Function: magit-add-change-log-entry-other-window
magit-add-change-log-entry-other-window is an autoloaded, interactive
and byte-compiled function defined in magit-extras.el.
Signature
(magit-add-change-log-entry-other-window &optional WHOAMI FILE-NAME)
Documentation
Find change log file in other window and add entry and item.
This differs from add-change-log-entry-other-window (which see)
in that it acts on the current hunk in a Magit buffer instead of
on a position in a file-visiting buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-extras.el
;;;###autoload
(defun magit-add-change-log-entry-other-window (&optional whoami file-name)
"Find change log file in other window and add entry and item.
This differs from `add-change-log-entry-other-window' (which see)
in that it acts on the current hunk in a Magit buffer instead of
on a position in a file-visiting buffer."
(interactive (and current-prefix-arg
(list current-prefix-arg
(prompt-for-change-log-name))))
(magit-add-change-log-entry whoami file-name t))