emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/embark b22bcc42c7: Rename some functions for greater co


From: ELPA Syncer
Subject: [elpa] externals/embark b22bcc42c7: Rename some functions for greater consistency (fixes #671)
Date: Sat, 7 Oct 2023 15:57:58 -0400 (EDT)

branch: externals/embark
commit b22bcc42c70e75e5c7cb479eb830ecebda0b8cc3
Author: Omar Antolín <omar.antolin@gmail.com>
Commit: Omar Antolín <omar.antolin@gmail.com>

    Rename some functions for greater consistency (fixes #671)
---
 CHANGELOG.org |  5 +++++
 embark.el     | 16 ++++++++--------
 2 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/CHANGELOG.org b/CHANGELOG.org
index c3441e198d..c5894a36e1 100644
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -7,6 +7,11 @@
 - Now pressing RET in an =embark-collect= on a selection made by
   using =embark-select= in a normal buffer will take you to the location
   each target was collected from.
+- Some functions renamed for greater consistency (these functions are
+  unlikely to be referred to in user's configuration):
+  - =embark-target-completion-at-point= → 
=embark-target-completion-list-candidate=
+  - =embark-target-top-minibuffer-completion= → 
=embark-target-top-minibuffer-candidate=
+  - =embark-completions-buffer-candidates= → 
=embark-completion-list-candidates=
 * Version 0.23 (2023-09-19)
 - Added a mode line indicator showing the number of selected targets in
   the current buffer (contributed by @minad, thanks!)
diff --git a/embark.el b/embark.el
index 25eeb78c6e..17820492cf 100644
--- a/embark.el
+++ b/embark.el
@@ -163,11 +163,11 @@ or a list of such symbols."
                              (repeat :tag "Keymaps" variable))))
 
 (defcustom embark-target-finders
-  '(embark-target-top-minibuffer-completion
+  '(embark-target-top-minibuffer-candidate
     embark-target-active-region
-    embark-target-text-heading-at-point
     embark-target-collect-candidate
-    embark-target-completion-at-point
+    embark-target-completion-list-candidate
+    embark-target-text-heading-at-point
     embark-target-bug-reference-at-point
     embark-target-flymake-at-point
     embark-target-smerge-at-point
@@ -995,7 +995,7 @@ As a convenience, in Org Mode an initial ' or surrounding 
== or
   (when (derived-mode-p 'prog-mode)
     (embark-target-heading-at-point)))
 
-(defun embark-target-top-minibuffer-completion ()
+(defun embark-target-top-minibuffer-candidate ()
   "Target the top completion candidate in the minibuffer.
 Return the category metadatum as the type of the target.
 
@@ -1036,7 +1036,7 @@ their own target finder.  See for example
            candidate)
         ,start . ,end))))
 
-(defun embark-target-completion-at-point ()
+(defun embark-target-completion-list-candidate ()
   "Return the completion candidate at point in a completions buffer."
   (when (derived-mode-p 'completion-list-mode)
     (if (not (get-text-property (point) 'mouse-face))
@@ -2588,7 +2588,7 @@ point."
 (defcustom embark-candidate-collectors
   '(embark-selected-candidates
     embark-minibuffer-candidates
-    embark-completions-buffer-candidates
+    embark-completion-list-candidates
     embark-dired-candidates
     embark-ibuffer-candidates
     embark-embark-collect-candidates
@@ -2761,7 +2761,7 @@ This makes `embark-export' work in Embark Collect 
buffers."
                   (push (cdr cand) all)))
               (nreverse all))))))
 
-(defun embark-completions-buffer-candidates ()
+(defun embark-completion-list-candidates ()
   "Return all candidates in a completions buffer."
   (when (derived-mode-p 'completion-list-mode)
     (cons
@@ -2771,7 +2771,7 @@ This makes `embark-export' work in Embark Collect 
buffers."
        (next-completion 1)
        (let (all)
          (while (not (eobp))
-           (push (cdr (embark-target-completion-at-point)) all)
+           (push (cdr (embark-target-completion-list-candidate)) all)
            (next-completion 1))
          (nreverse all))))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]