Gitmoji Commit For VS Code

Gitmoji Commit is a free extension for Visual Studio Code that allows users to easily compose Git commit
messages with emojis. The default emoji mapping is based on Gitmoji where each emoji is associated with a certain type of commit. A user can also supply their own emoji system via the settings in VS Code. The purpose of this system, as a whole, is to make commit messages easy to identify at a glance.
Overview
A short video describing the extension in use.
Inspiration
The genesis of Gitmoji Commit came about when I was working in a small team and the team leader wanted to use emojis in our commit messages. This didn't seem like a hassle until I found myself having to surf around and lookup the right emoji every time I made a commit. I searched for an extension in VS Code, and when I came back with nothing I decided it would be a good time to learn how to write my own. VS Code has done a great job documenting the steps required to work with extensions.

Using Gitmoji Commit
Once the extension is installed it is easy to integrate into a normal workflow. When the time comes to make a commit open Gitmoji Commit through a keyboard shortcut or through the Command Palette. Since the keyboard shortcut needs to be setup manually lets walk through the Command Palette flow.

- Open the Command Palette with
Cmd/Ctl + Shift + P
- Search for
Gitmoji Commit: Commit Message
and click on it - A searchable list of emojis will appear
- Select an emoji
- A new text field will appear which accepts the actual text of the commit message
- Type the commit text and press
Enter
- The entire commit message will appear in the terminal
- Press enter or turn on
Auto Commit
Check out the Gitmoji Commit README to learn about all the features.