Function: magit-log-select-pick
magit-log-select-pick is an interactive and byte-compiled function
defined in magit-log.el.
Signature
(magit-log-select-pick)
Documentation
Select the commit at point and act on it.
Call magit-log-select-pick-function with the selected
commit as argument.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
(defun magit-log-select-pick ()
"Select the commit at point and act on it.
Call `magit-log-select-pick-function' with the selected
commit as argument."
(interactive)
(let ((fun magit-log-select-pick-function)
(rev (magit-commit-at-point)))
(magit-mode-bury-buffer 'kill)
(funcall fun rev)))