emacs-emojify

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

commit dff8217de0e055270fa1191e88b0b0365e79a5f0
parent b378da44608e9b038897b904ca518d91fba14cbc
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Date:   Sun,  4 Sep 2016 18:39:01 +0530

Add some line spacing between candidates in emojify-insert-emoji
command

Also make completion case insensitive

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

diff --git a/emojify.el b/emojify.el @@ -1029,7 +1029,9 @@ of the window. DISPLAY-START corresponds to the new start of the window." This respects the `emojify-emoji-styles' variable." (interactive) (let ((emojify-in-insertion-command-p t) - (styles (mapcar #'symbol-name emojify-emoji-styles))) + (styles (mapcar #'symbol-name emojify-emoji-styles)) + (line-spacing 7) + (completion-ignore-case t)) (insert (car (split-string (completing-read "Apropos Emoji: " (let (emojis) (maphash (lambda (key value)