├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── doc └── images │ ├── atom-autocomplete-emojis-markdown-smiley.png │ ├── atom-autocomplete-emojis-settings.png │ ├── atom-autocomplete-emojis-smiley.png │ └── atom-autocomplete-emojis.gif ├── lib ├── autocomplete-emojis.coffee ├── emoji-cheat-sheet.coffee └── emojis-provider.coffee ├── package.json ├── properties.json ├── spec └── autocomplete-emojis-spec.coffee └── update.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/atom-autocomplete-emojis-markdown-smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/doc/images/atom-autocomplete-emojis-markdown-smiley.png -------------------------------------------------------------------------------- /doc/images/atom-autocomplete-emojis-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/doc/images/atom-autocomplete-emojis-settings.png -------------------------------------------------------------------------------- /doc/images/atom-autocomplete-emojis-smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/doc/images/atom-autocomplete-emojis-smiley.png -------------------------------------------------------------------------------- /doc/images/atom-autocomplete-emojis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/doc/images/atom-autocomplete-emojis.gif -------------------------------------------------------------------------------- /lib/autocomplete-emojis.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/lib/autocomplete-emojis.coffee -------------------------------------------------------------------------------- /lib/emoji-cheat-sheet.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/lib/emoji-cheat-sheet.coffee -------------------------------------------------------------------------------- /lib/emojis-provider.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/lib/emojis-provider.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/package.json -------------------------------------------------------------------------------- /properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/properties.json -------------------------------------------------------------------------------- /spec/autocomplete-emojis-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/spec/autocomplete-emojis-spec.coffee -------------------------------------------------------------------------------- /update.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autocomplete-emojis/HEAD/update.coffee --------------------------------------------------------------------------------