Skip to content

Commit

Permalink
Fix font-lock for breakpoint buffer when hits > 9
Browse files Browse the repository at this point in the history
  • Loading branch information
svaante committed Dec 7, 2024
1 parent 49586dd commit 00d659f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dape.el
Original file line number Diff line number Diff line change
Expand Up @@ -3677,8 +3677,8 @@ without log or expression breakpoint"))))))
(dape--buffer-map dape-info-exceptions-line-map dape-info-exceptions-toggle)

(defvar dape--info-breakpoints-font-lock-keywords
'(("^\\(y\\)" (1 font-lock-warning-face))
("^\\(n\\)" (1 font-lock-doc-face)))
'(("^ *\\(y\\)" (1 font-lock-warning-face))
("^ *\\(n\\)" (1 font-lock-doc-face)))
"Keywords for `dape-info-breakpoints-mode'.")

(define-derived-mode dape-info-breakpoints-mode dape-info-parent-mode "Breakpoints"
Expand Down

0 comments on commit 00d659f

Please sign in to comment.