HakaCode / gitmoji-vscode

😜 An emoji tool with your git commit messages for VS Code

Home Page:https://marketplace.visualstudio.com/items?itemName=Vtrois.gitmoji-vscode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

English | 简体中文

About

This project provides an easy solution for using Gitmoji from VSCode Extension. gitmoji-vscode solves the hassle of searching through the gitmoji list. Includes a bunch of options you can play with! 🎉

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

  • outputType - Configure the type of emoji output as needed. Default is emoji

For emoji type:

emoji

For code type:

code

Sample configuration:

{
  "gitmoji.outputType": "emoji"
}

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

Add configurable additionnal emojis

  • 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.

Only use your additionnal emojis

  • onlyUseAdditionalEmojis - Use your additional emojis instead the ones from the extension.

Sample configuration:

{
  "gitmoji.onlyUseAdditionalEmojis": true
}

Search gitmoji by emoji code

  • showEmojiCode - Enable searching gitmojis by emoji code (example: ambulance will return hotfix).

Sample configuration:

{
  "gitmoji.showEmojiCode": true
}

License

The code is available under the MIT license.

About

😜 An emoji tool with your git commit messages for VS Code

https://marketplace.visualstudio.com/items?itemName=Vtrois.gitmoji-vscode

License:MIT License


Languages

Language:TypeScript 100.0%