From abfa467626a78147a408cef9a731c5b64e20a0d1 Mon Sep 17 00:00:00 2001 From: Daniel Pettersson Date: Sun, 6 Oct 2024 22:50:27 +0200 Subject: [PATCH] Fix breakpoint type alignment --- dape.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dape.el b/dape.el index f27934e..df4910a 100644 --- a/dape.el +++ b/dape.el @@ -3656,10 +3656,10 @@ displayed." (propertize "y" 'font-lock-face 'font-lock-warning-face) (propertize "n" 'font-lock-face 'font-lock-doc-face))) (pcase (dape--breakpoint-type breakpoint) - ('log "Log ") ;; Manual type column alignment - ('hits "Hits ") + ('log "Log ") + ('hits "Hits ") ('expression "Cond ") - (_ "Break")) + (_ "Break")) (pcase buffer-or-path ((and buffer (pred bufferp)) (concat @@ -3680,7 +3680,7 @@ displayed." (gdb-table-add-row table (list (propertize "y" 'font-lock-face 'font-lock-warning-face) - "Data" + "Data " (format "%s %s %s" (propertize (plist-get plist :name)