jcs-elpa / company-emojify

Company completion for Emojify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

License: GPL v3 MELPA MELPA Stable

company-emojify

Company completion for Emojify

CI

Table of Contents

πŸ† Features

  • Uses emojify
  • Support both unicode and image displays

πŸ’Ύ Quickstart

(require 'company-emojify)
(add-to-list 'company-backends 'company-emojify)

πŸ”¨ Configuration

πŸ” company-emojify-insert-unicode

Replace the :shortcode: with the real Unicode character upon completion.

πŸ” company-emojify-emoji-styles

Display these emoji styles as candidates, default to '(ascii unicode github).

If you want to limit to a certain style, you can do the following

(setq company-emojify-emoji-styles '(github))  ; Show only the `github` style

See emojify-emoji-styles for more information.

πŸ” company-emojify-annotation

Option to display emoji in annotation. It can either be one of the following values,

  • nil
  • unicode
  • image (default)

Notice, it will display unicode if you are in non-graphical environment (terminal).

πŸ” company-emojify-document

Display information about the emoji in document buffer, default to t.

❓ FAQ

πŸ’« How is this different from company-emoji?

company-emoji is more lightweight and does not require emojify. However, it does not support display with emoji images. company-emoji would work on its own since it declares its emoji list in company-emoji-list.el. This package reuses the code from emojify hence this would be a better choice if you already have emojify installed.

πŸ’« How to add more emoji?

Unlike company-emoji has specify it's own emoji list. Since we rely on package emojify, please consider contribute to the upstream.

Contribute

PRs Welcome Elisp styleguide Donate on paypal Become a patron

If you would like to contribute to this project, you may either clone and make pull requests to this repository. Or you can clone the project and establish your own branch of this tool. Any methods are welcome!

About

Company completion for Emojify

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 93.3%Language:Makefile 6.7%