English | ็ฎไฝไธญๆ
Gitmoji tool for git commit messages in VS Code
- Open Visual Studio Code.
- Press
Ctrl+Shift+X
to open the Extensions tab. - Type
Gitmoji
to find the extension. - Click the
Install
button, then theEnable
button.
outputType
- Configure the type of emoji output as needed. Default isemoji
For emoji type:
For code type:
Sample configuration:
{
"gitmoji.outputType": "emoji"
}
Notice: If you use Gitlab, type emoji, if you use Github, you can type code or emoji.
additionalEmojis
- Add configurable additionnal emojis.
Sample configuration:
{
"gitmoji.additionalEmojis": [
{
"emoji": "๐",
"code": ":bug:",
"description": "Fix a bug.",
"description_zh_cn": "ไฟฎๅค BUG"
},
{
"emoji": "๐",
"code": ":ambulance:",
"description": "Critical hotfix.",
"description_zh_cn": "็ดงๆฅ็ญไฟฎๅค"
}
]
}
Notice: description_zh_cn
is a chinese (zh_CN) version of the description. If empty, the english description will be used.
onlyUseAdditionalEmojis
- Use your additional emojis instead the ones from the extension.
Sample configuration:
{
"gitmoji.onlyUseAdditionalEmojis": true
}
showEmojiCode
- Enable searching gitmojis by emoji code (example: ambulance will return hotfix).
Sample configuration:
{
"gitmoji.showEmojiCode": true
}
We welcome all contributions. You can submit any ideas as pull requests or as issues, have a good time! :)
The project is released under the MIT License, see the LICENCE file for details.