emacs-emojify

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

commit 1d738397dc5e41afed177bc9f28efeb153d64832
parent 23921a932408ee4ab51d48a1e0877ad3cfda1cd1
Author: Iqbal Ansari <iqbal.ansari@ignitesol.com>
Date:   Sat, 17 Sep 2016 11:09:07 +0530

Advance point to next current matches end after emojifying composed text

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

diff --git a/emojify.el b/emojify.el @@ -1031,9 +1031,10 @@ TODO: Skip emojifying if region is already emojified." 'point-entered #'emojify-point-entered-function 'help-echo #'emojify-help-function))))) (setq compose-start (and compose-end (next-single-property-change compose-end - 'composition - nil - end)))) + 'composition + nil + end))) + (goto-char compose-end)) (sit-for 0 t)))))) (defun emojify-undisplay-emojis-in-region (beg end)