emacs-emojify

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

commit 49372b2cfb7f3167d441b5abd42221d9a3ab4d14
parent 144c6ccea92c1891a7cd46d77fe2592846471d0d
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Date:   Mon, 13 Mar 2017 17:38:12 +0530

Echo the emoji after copying in apropos mode

Diffstat:
Memojify.el | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/emojify.el b/emojify.el @@ -1465,7 +1465,8 @@ Re-enable it when buffer changes back to multibyte encoding." (if (not (get-text-property (point) 'emojified)) (emojify-user-error "No emoji at point") (kill-new (get-text-property (point) 'emojify-text)) - (message "Copied emoji to kill ring!")))) + (message "Copied emoji (%s) to kill ring!" + (get-text-property (point) 'emojify-text))))) (defun emojify-apropos-describe-emoji () "Copy the emoji being displayed at current line in apropos results."