[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dape f02fc87e82 116/123: Fix fringe check when placing
From: |
ELPA Syncer |
Subject: |
[elpa] externals/dape f02fc87e82 116/123: Fix fringe check when placing breakpoints |
Date: |
Tue, 5 Dec 2023 03:58:06 -0500 (EST) |
branch: externals/dape
commit f02fc87e828bb3175144f3f356e392f605b87a67
Author: Daniel Pettersson <daniel@dpettersson.net>
Commit: Daniel Pettersson <daniel@dpettersson.net>
Fix fringe check when placing breakpoints
---
dape.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dape.el b/dape.el
index 376388a63e..68bd559f8c 100644
--- a/dape.el
+++ b/dape.el
@@ -1870,7 +1870,8 @@ Removes itself on execution."
(when-let ((buffer (overlay-buffer overlay)))
(let (before-string)
(cond
- ((and (not (eql fringe-mode 0)) (window-system))
+ ((and (window-system) ;; running in term
+ (not (eql (frame-parameter (selected-frame) 'left-fringe) 0)))
(setq before-string
(propertize " " 'display
`(left-fringe ,bitmap ,face))))
- [elpa] externals/dape ba63e50434 106/123: Batteries included, (continued)
- [elpa] externals/dape ba63e50434 106/123: Batteries included, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 87c91273ec 107/123: Add error message on launch/attach fail, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 2620078517 117/123: Improve error message on failed restart, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 0f545358e2 118/123: Fix strange usage of add to watch in scope buffer, ELPA Syncer, 2023/12/05
- [elpa] externals/dape c3fb0ebc32 075/123: Remove `dape--name', ELPA Syncer, 2023/12/05
- [elpa] externals/dape bc17ae80ff 078/123: Fix debuggee cleanup, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 30b2695154 087/123: Cancel timeout timers on process kill, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 41cfcc3ce3 089/123: Variety of dape--tree-widget performance "hacks", ELPA Syncer, 2023/12/05
- [elpa] externals/dape b7c578992d 094/123: Fix unnecessary newline in stopped repl text, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 4c990a5769 110/123: Rename `dape-breakpoint-*' functions for discoverability, ELPA Syncer, 2023/12/05
- [elpa] externals/dape f02fc87e82 116/123: Fix fringe check when placing breakpoints,
ELPA Syncer <=
- [elpa] externals/dape 8cc8b262c1 059/123: Add custom formatting to dape-info variables, ELPA Syncer, 2023/12/05
- [elpa] externals/dape ebd9ebf6a8 074/123: Default to "sensible" values in `dape-config' when missing, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 5c62153574 042/123: Fix various customization types, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 3770a22b28 060/123: Cleanup before emacs exits #8, ELPA Syncer, 2023/12/05
- [elpa] externals/dape b27a7db84c 071/123: Add defcustom buffer actions to Dape buffers, ELPA Syncer, 2023/12/05
- [elpa] externals/dape f982879c17 080/123: Cleanup timeouts before restart, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 5f65524007 102/123: Fix REPL completions when process has never stopped #15, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 2831601925 014/123: Small README improvements, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 3a05121b02 019/123: Fix adapter examples, ELPA Syncer, 2023/12/05
- [elpa] externals/dape df0c2d8357 023/123: Require success to launch/attach after initialize, ELPA Syncer, 2023/12/05