Function: magit-list-active-notes-refs

magit-list-active-notes-refs is a byte-compiled function defined in magit-git.el.

Signature

(magit-list-active-notes-refs)

Documentation

Return notes refs according to core.notesRef and notes.displayRef.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defun magit-list-active-notes-refs ()
  "Return notes refs according to `core.notesRef' and `notes.displayRef'."
  (magit-git-lines "for-each-ref" "--format=%(refname)"
                   (or (magit-get "core.notesRef") "refs/notes/commits")
                   (magit-get-all "notes.displayRef")))