[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dape 926dd1d535 09/10: Add margin breakpoint custom
From: |
ELPA Syncer |
Subject: |
[elpa] externals/dape 926dd1d535 09/10: Add margin breakpoint custom |
Date: |
Sun, 14 Jan 2024 18:57:42 -0500 (EST) |
branch: externals/dape
commit 926dd1d535d17b7bc2083c069d76263dfd4d02ea
Author: Daniel Pettersson <daniel@dpettersson.net>
Commit: Daniel Pettersson <daniel@dpettersson.net>
Add margin breakpoint custom
---
dape.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dape.el b/dape.el
index 609229d830..c06672c15c 100644
--- a/dape.el
+++ b/dape.el
@@ -476,6 +476,10 @@ left-to-right display order of the properties."
"Max length of file name in dape info buffers."
:type 'integer)
+(defcustom dape-breakpoint-margin-string "B"
+ "String to display breakpoint in margin."
+ :type 'string)
+
(defcustom dape-repl-use-shorthand t
"Dape `dape-repl-commands' can be invokend with first char of command."
:type 'boolean)
@@ -2227,7 +2231,7 @@ If EXPRESSION place conditional breakpoint."
'face 'dape-expression-face))))
(t
(dape--overlay-icon breakpoint
- "●"
+ dape-breakpoint-margin-string
'large-circle
'dape-breakpoint-face)))
(overlay-put breakpoint 'modification-hooks '(dape--breakpoint-freeze))
- [elpa] externals/dape updated (32b66a2779 -> 12e6753d61), ELPA Syncer, 2024/01/14
- [elpa] externals/dape a8b810f47b 01/10: Rework dape-commands into dape-command, ELPA Syncer, 2024/01/14
- [elpa] externals/dape 3daceb621c 08/10: Remove indexing useless indexing of scope and breakpoints buffer, ELPA Syncer, 2024/01/14
- [elpa] externals/dape 453648f5e5 06/10: Skip auto remove breakpoints if connection is not initialized, ELPA Syncer, 2024/01/14
- [elpa] externals/dape 926dd1d535 09/10: Add margin breakpoint custom,
ELPA Syncer <=
- [elpa] externals/dape 12e6753d61 10/10: Use different arrow faces to display stack and break at same line, ELPA Syncer, 2024/01/14
- [elpa] externals/dape dd42a69353 03/10: Small formatting fix, ELPA Syncer, 2024/01/14
- [elpa] externals/dape 622a9f736c 02/10: Use dape--connection for ui update, ELPA Syncer, 2024/01/14
- [elpa] externals/dape 96dd2be748 05/10: Reset stack id on new stop stack id only valid for each stoppage, ELPA Syncer, 2024/01/14
- [elpa] externals/dape 88829166fb 04/10: Remove unused face, ELPA Syncer, 2024/01/14
- [elpa] externals/dape 1a9d381224 07/10: Add breakpoint info command for editing breakpoint in buffer, ELPA Syncer, 2024/01/14