├── .gitignore ├── .jshintrc ├── .python-version ├── Default (Linux).sublime-keymap ├── Default (OSX).sublime-keymap ├── Default (Windows).sublime-keymap ├── GithubEmoji.sublime-settings ├── GithubEmojiCompletions.py ├── LICENSE.md ├── Main.sublime-menu ├── README.md ├── emoji ├── createCompletions.js └── emoji.json ├── messages.json ├── messages ├── 1.1.0.md ├── 1.1.1.md ├── 1.1.2.md ├── 1.1.3.md ├── 1.1.4.md ├── 1.1.5.md ├── 1.2.0.md └── 2.0.0.md └── screenshots └── emoji-completions.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/.jshintrc -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8 2 | -------------------------------------------------------------------------------- /Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /Default (OSX).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/Default (OSX).sublime-keymap -------------------------------------------------------------------------------- /Default (Windows).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/Default (Windows).sublime-keymap -------------------------------------------------------------------------------- /GithubEmoji.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/GithubEmoji.sublime-settings -------------------------------------------------------------------------------- /GithubEmojiCompletions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/GithubEmojiCompletions.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/README.md -------------------------------------------------------------------------------- /emoji/createCompletions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/emoji/createCompletions.js -------------------------------------------------------------------------------- /emoji/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/emoji/emoji.json -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages.json -------------------------------------------------------------------------------- /messages/1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages/1.1.0.md -------------------------------------------------------------------------------- /messages/1.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages/1.1.1.md -------------------------------------------------------------------------------- /messages/1.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages/1.1.2.md -------------------------------------------------------------------------------- /messages/1.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages/1.1.3.md -------------------------------------------------------------------------------- /messages/1.1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages/1.1.4.md -------------------------------------------------------------------------------- /messages/1.1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages/1.1.5.md -------------------------------------------------------------------------------- /messages/1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages/1.2.0.md -------------------------------------------------------------------------------- /messages/2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/messages/2.0.0.md -------------------------------------------------------------------------------- /screenshots/emoji-completions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akatopo/GithubEmoji/HEAD/screenshots/emoji-completions.gif --------------------------------------------------------------------------------