0.2.0 โ€ข Published 5 years ago

gitmoji-vscode v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

gitmoji-vscode

About

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": ":whale:",
      "description": "Work about Docker",
      "description_zh_cn": "ๅค„็† Docker ็›ธๅ…ณ็š„ๅทฅไฝœ"
    },
    {
      "emoji": "๐Ÿšš",
      "code": ":truck:",
      "description": "Moving or renaming files",
      "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.additionalEmojis": [
    {
      "emoji": "๐Ÿณ",
      "code": ":whale:",
      "description": "Work about Docker",
      "description_zh_cn": "ๅค„็† Docker ็›ธๅ…ณ็š„ๅทฅไฝœ"
    },
    {
      "emoji": "๐Ÿšš",
      "code": ":truck:",
      "description": "Moving or renaming files",
      "description_zh_cn": "็งปๅŠจๆˆ–้‡ๅ‘ฝๅๆ–‡ไปถ"
    }
  ],
  "gitmoji.onlyUseAdditionalEmojis": true
}

Acknowledgement

Thanks to the contributors who inspired this project.

Project:

Contributors:

  • @Fen, @will-stone, @ewen-lbh, @Hector-98

License

The code is available under the MIT license.

0.2.0

5 years ago