Variable: magit-stash-section-map

magit-stash-section-map is a variable defined in magit-stash.el.

Value

                              magit-stash-apply
                              magit-stash-drop
                              magit-stash-pop
                              magit-stash-show
<1> <magit-menu-format-desc>  nil
<2> <magit-menu-format-desc>  nil
<3> <magit-menu-format-desc>  nil
<4> <magit-menu-format-desc>  nil

Documentation

Keymap for stash sections.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-stash.el
(defvar-keymap magit-stash-section-map
  :doc "Keymap for `stash' sections."
  "<remap> <magit-cherry-pick>"  #'magit-stash-pop
  "<remap> <magit-cherry-apply>" #'magit-stash-apply
  "<remap> <magit-delete-thing>" #'magit-stash-drop
  "<remap> <magit-visit-thing>"  #'magit-stash-show
  "<4>" (magit-menu-item "Pop %M"    #'magit-stash-pop)
  "<3>" (magit-menu-item "Apply %M"  #'magit-stash-apply)
  "<2>" (magit-menu-item "Delete %M" #'magit-stash-drop)
  "<1>" (magit-menu-item "Visit %v"  #'magit-stash-show))