Function: magit-highlight-squash-markers
magit-highlight-squash-markers is a byte-compiled function defined in
magit-diff.el.
Signature
(magit-highlight-squash-markers)
Documentation
Highlight "squash!" and similar markers.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-diff.el
(defun magit-highlight-squash-markers ()
"Highlight \"squash!\" and similar markers."
(when (looking-at "\\(?:squash!\\|fixup!\\|amend!\\)")
(magit--add-face-text-property (match-beginning 0) (match-end 0)
'magit-keyword-squash)))