emacs-emojify

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

commit b022c3aa936b867f75e81e7427a2107e4744d5a8
parent f68ee6fd5e818dc1c2e805fc02519b704c1bb298
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Date:   Thu, 24 Nov 2016 17:12:57 +0530

Improve fenced emoji regex to accept '+'

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

diff --git a/emojify.el b/emojify.el @@ -716,7 +716,7 @@ and then `emojify-emojis'." ;; Construct emojify-regexps such that github style are searched first ;; followed by unicode and then ascii emojis. - (setq emojify-regexps (list ":[[:alnum:]_-]+:" + (setq emojify-regexps (list ":[[:alnum:]+_-]+:" (regexp-opt unicode-emojis) (regexp-opt ascii-emojis))))