Re: Emojis with quail - but only some
Stefan Monnier via Users list for the GNU Emacs text editor <[email protected]>
| Newsgroups | gmane.emacs.help |
|---|---|
| Message-ID | <[email protected]> |
> Did you try to use abbrevs for this? It sounds like that is what you > want: have special words that expand into corresponding Emoji. I suggest you look at `f90-mode-abbrev-table` in `lisp/progmodes/f90.el` for an example of an abbrev table which does something similar, tho for a different purpose (using the backquote character instead of the colon character to start the abbrevs). Another approach would be to use `completion-at-point-functions`. === Stefan