[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dape 48ed41f15c 2/4: Fix only display key hint once
From: |
ELPA Syncer |
Subject: |
[elpa] externals/dape 48ed41f15c 2/4: Fix only display key hint once |
Date: |
Sat, 16 Nov 2024 06:57:41 -0500 (EST) |
branch: externals/dape
commit 48ed41f15c0637f16948d013ef1ab377b0255c5f
Author: Daniel Pettersson <daniel@dpettersson.net>
Commit: Daniel Pettersson <daniel@dpettersson.net>
Fix only display key hint once
---
dape.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dape.el b/dape.el
index a85f9e9b10..e28c9fca38 100644
--- a/dape.el
+++ b/dape.el
@@ -4880,9 +4880,9 @@ Update `dape--inlay-hint-overlays' from SCOPES."
with base-config = (alist-get hint-key dape-configs)
for (key value) on hint-config by 'cddr
unless (or (memq key dape-minibuffer-hint-ignore-properties)
- (and (eq key 'port) (eq value :autoport))
- (eq key 'ensure))
- collect
+ (memq key displayed-keys)
+ (and (eq key 'port) (eq value :autoport)))
+ collect key into displayed-keys and collect
(concat
(propertize (format "%s" key)
'face 'font-lock-keyword-face)