Function: magit-insert-stash-notes
magit-insert-stash-notes is a byte-compiled function defined in
magit-stash.el.
Signature
(magit-insert-stash-notes)
Documentation
Insert section showing notes for a stash.
This shows the notes for stash@{N} but not for the other commits that make up the stash.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-stash.el
(defun magit-insert-stash-notes ()
"Insert section showing notes for a stash.
This shows the notes for stash@{N} but not for the other commits
that make up the stash."
(magit-insert-section (note)
(magit-insert-heading t "Notes")
(magit-git-insert "notes" "show" magit-buffer-revision)
(magit-cancel-section 'if-empty)
(insert "\n")))