seatonjiang / gitmoji-vscode

Gitmoji tool for git commit messages in VSCode
https://marketplace.visualstudio.com/items?itemName=seatonjiang.gitmoji-vscode
MIT License
275 stars 30 forks source link
emoji gitmoji vscode-extension

English | 简体中文 | Português Brasileiro | Português Europeu | 日本語 | 한국어

Report Bug · Request Feature

Gitmoji tool for git commit messages in VSCode

💻 Screenshot

📦 Install

  1. Open Visual Studio Code.
  2. Press Ctrl+Shift+X to open the Extensions tab.
  3. Type Gitmoji to find the extension.
  4. Click the Install button, then the Enable button.

🔨 Configuration

Select output type

For emoji type:

emoji

For code type:

code

Sample configuration:

{
  "gitmoji.outputType": "emoji"
}

Notice: If you use Gitlab, type emoji, if you use GitHub, you can type code or emoji.

Add configurable additionnal emojis

Sample configuration:

{
  "gitmoji.addCustomEmoji": [
    {
      "emoji": "🧵",
      "code": ":thread:",
      "description": "Add or update code related to multithreading or concurrency"
    },
    {
      "emoji": "🦺",
      "code": ":safety_vest:",
      "description": "Add or update code related to validation"
    }
  ]
}

Only use your Custom emojis

Sample configuration:

{
  "gitmoji.onlyUseCustomEmoji": true
}

Search Gitmoji by emoji code

Sample configuration:

{
  "gitmoji.showEmojiCode": true
}

Insert emoji at the end of the commit

Sample configuration:

{
  "gitmoji.asSuffix": true
}

🤝 Contributing

We welcome all contributions. You can submit any ideas as Pull requests or as Issues, have a good time!

📃 License

The project is released under the MIT License, see the LICENCE file for details.