Variable: magit-cherry-mode-hook
magit-cherry-mode-hook is a variable defined in magit-log.el.
Value
nil
Documentation
Hook run after entering Magit Cherry mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
(define-derived-mode magit-cherry-mode magit-mode "Magit Cherry"
"Mode for looking at commits not merged upstream.
\\<magit-mode-map>\
Type \\[magit-refresh] to refresh the current buffer.
Type \\[magit-visit-thing] or \\[magit-diff-show-or-scroll-up] \
to visit the commit at point.
Type \\[magit-cherry-pick] to apply the commit at point.
\\{magit-cherry-mode-map}"
:interactive nil
:group 'magit-log
(magit-hack-dir-local-variables)
(setq magit--imenu-group-types 'cherries))