emacs-emojify

fork of https://github.com/iqbalansari/emacs-emojify
Log | Files | Refs | LICENSE

commit 51eb5dd968a70b2b1f1523ac48f9ec1699fb0f59
parent 4ffc5d561a8188088353d556d53c866035e31481
Author: jrs5 <jonathan.schmeling@generalgrowth.com>
Date:   Sat,  9 May 2020 01:47:34 -0500

Replace all locations of `completing-read` with the new variable.

Diffstat:
Memojify.el | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/emojify.el b/emojify.el @@ -1469,8 +1469,8 @@ non-interactive mode and `emojify-download-emojis-p' is set to `ask'." (defun emojify-download-emoji (emoji-set) "Download the provided EMOJI-SET." - (interactive (list (completing-read "Select the emoji set you want to download: " - (ht-keys emojify-emoji-set-json)))) + (interactive (list (emojify-completing-read-function "Select the emoji set you want to download: " + (ht-keys emojify-emoji-set-json)))) (let ((emoji-data (ht-get emojify-emoji-set-json emoji-set))) (cond ((not emoji-data) (error "No emoji set named %s found" emoji-set)) @@ -1853,14 +1853,14 @@ completion UI to display properly emojis." minibuffer-setup-hook)) (helm-after-initialize-hook (cons #'emojify--completing-read-helm-hook (bound-and-true-p helm-after-initialize-hook)))) - (car (split-string (completing-read prompt - candidates - predicate - require-match - initial-input - hist - def - inherit-input-method) + (car (split-string (emojify-completing-read-function prompt + candidates + predicate + require-match + initial-input + hist + def + inherit-input-method) " ")))) ;;;###autoload