[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/popper 8592573f33 070/102: Fixed popper-echo display wh
From: |
ELPA Syncer |
Subject: |
[elpa] externals/popper 8592573f33 070/102: Fixed popper-echo display when groups are symbols |
Date: |
Fri, 8 Sep 2023 15:58:54 -0400 (EDT) |
branch: externals/popper
commit 8592573f3380acb2beb3c611787c939008c81b2b
Author: Karthik Chikmagalur <karthikchikmagalur@gmail.com>
Commit: Karthik Chikmagalur <karthikchikmagalur@gmail.com>
Fixed popper-echo display when groups are symbols
---
README.org | 2 +-
popper-echo.el | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.org b/README.org
index 2ac517e531..df16e2da15 100644
--- a/README.org
+++ b/README.org
@@ -4,8 +4,8 @@
[[https://melpa.org/#/popper][file:https://melpa.org/packages/popper-badge.svg]]
:END:
-- /New in v0.40: Auto-hide or suppress popup buffers, assign popups by
predicate/
- /New in v0.45: popper-echo-mode for displaying popup names in the echo area
and dispatching to them/
+- /New in v0.40: Auto-hide or suppress popup buffers, assign popups by
predicate/
Popper is a minor-mode to tame the flood of ephemeral windows Emacs produces,
while still keeping them within arm's reach.
diff --git a/popper-echo.el b/popper-echo.el
index e07a117bd2..7d0a2be581 100644
--- a/popper-echo.el
+++ b/popper-echo.el
@@ -111,14 +111,14 @@ off."
(let* ((message-log-max nil)
(grp-symb (when popper-group-function
(funcall popper-group-function)))
- (group (if (and grp-symb (symbolp grp-symb))
- (symbol-name grp-symb)
- grp-symb))
- (buried-popups (thread-last (alist-get group
popper-buried-popup-alist nil nil 'equal)
+ (buried-popups (thread-last (alist-get grp-symb
popper-buried-popup-alist nil nil 'equal)
(mapcar #'cdr)
(cl-remove-if-not #'buffer-live-p)
(mapcar #'buffer-name)
(delete-dups)))
+ (group (if (and grp-symb (symbolp grp-symb))
+ (symbol-name grp-symb)
+ grp-symb))
(open-popup (buffer-name))
(dispatch-keys-extended (append popper-echo-dispatch-keys
(make-list (max 0 (- (length
buried-popups)
- [elpa] externals/popper 89ed8ab2da 038/102: Documentation update + kill-latest-popup kills frames now, (continued)
- [elpa] externals/popper 89ed8ab2da 038/102: Documentation update + kill-latest-popup kills frames now, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 268ac30047 046/102: More comprehensive delete-popup function + see, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 4c51182f5f 051/102: Fix error in `popper-group-by-project` (#10), ELPA Syncer, 2023/09/08
- [elpa] externals/popper 8dd55742d8 054/102: Updated Readme for readability + handle project-current when nil, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 8bd65b4267 057/102: Changed popup-delete functionality to use quit-window, ELPA Syncer, 2023/09/08
- [elpa] externals/popper a604447f65 058/102: Merge branch 'feature': Add popup hiding, ELPA Syncer, 2023/09/08
- [elpa] externals/popper cc7336c4e3 060/102: Checkdoc fixes, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 8c50bb3254 062/102: Added TODO in delete-popup for later, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 9a6af01f00 064/102: Dispatch keymap added to popper-echo-names, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 918306c2af 066/102: Updated README with popper-echo demo and new vids, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 8592573f33 070/102: Fixed popper-echo display when groups are symbols,
ELPA Syncer <=
- [elpa] externals/popper 7b02960025 082/102: Revert "Fix pcase clause for native-comp", ELPA Syncer, 2023/09/08
- [elpa] externals/popper 60297066e3 085/102: pcase 'otherwise' clause should be _ not 'T (#28), ELPA Syncer, 2023/09/08
- [elpa] externals/popper 6599c9b5a1 086/102: eliminate all warnings generated during byte-compilation (#33), ELPA Syncer, 2023/09/08
- [elpa] externals/popper 7ea13618c8 087/102: Remove needless quote (#37), ELPA Syncer, 2023/09/08
- [elpa] externals/popper d7560f1835 089/102: Fix for #35: alist argument ignored by default popper display func, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 47bf592c89 081/102: Fix pcase clause for native-comp, ELPA Syncer, 2023/09/08
- [elpa] externals/popper da70c8296a 092/102: popper-echo.el: Tweak popper echo display format, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 76b1a1f1bc 094/102: popper-echo: Tweak popper group display, ELPA Syncer, 2023/09/08
- [elpa] externals/popper 809ec965d8 097/102: popper: popper-cycle can cycle backwards, ELPA Syncer, 2023/09/08
- [elpa] externals/popper fe4f0b3b8b 100/102: popper.el, README: Release version 0.4.6, ELPA Syncer, 2023/09/08