Function: emoji-list-help
emoji-list-help is an interactive and byte-compiled function defined
in emoji.el.gz.
Signature
(emoji-list-help)
Documentation
Display the name of the emoji at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/international/emoji.el.gz
(defun emoji-list-help ()
"Display the name of the emoji at point."
(interactive nil emoji-list-mode)
(let ((glyph (get-text-property (point) 'emoji-glyph)))
(unless glyph
(error "No emoji here"))
(let ((name (emoji--name glyph)))
(if (not name)
(error "Emoji name is unknown")
(message "%s" name)))))