Commit with feelings!
A VS Code extension that help you type emojis in Git commit messages and text files. Type :tada: and see it turn into 🎉!
- Automatic Replacement in Commit Messages: Type emoji shortcodes (e.g.,
:rocket:,:fire:,:tada:) in Git commit messages and they'll automatically be replaced with the corresponding emoji - Emoji Autocomplete in Text Files: Get emoji suggestions as you type (by default only .md and plaintext is supported but can be configured)
- Custom Mappings: Define your own custom shortcode-to-emoji mappings (or emoji combos? 🐛🐛🐛🔥🔥🔥) in the extension settings
Add your own custom emoji shortcodes in VS Code settings:
{
"emoleji.customMappings": {
"custom": "🎨",
"myemoji": "🚀",
"team": "👥"
}
}enableInFiles: Enable/disable emoji autocomplete in text files (default:true)fileTypes: Array of language IDs where autocomplete is enabled (default:["markdown", "plaintext"])
{
"emoleji.enableInFiles": true,
"emoleji.fileTypes": ["markdown", "plaintext", "javascript", "typescript", "python"]
}Found a bug or have a feature request? Please open an issue on our GitHub repository.
MIT
Initial release