Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| const fs = require("fs"); | |
| function convertSyntaxHighlighting(tokenColors) { | |
| const syntax = {}; | |
| const scopeMapping = { | |
| variable: ["variable", "variable.other.readwrite", "entity.name.variable"], | |
| "variable.builtin": ["variable.defaultLanguage", "variable"], | |
| "variable.parameter": ["variable.parameter", "variable"], | |
| // "variable.member": [], |
| package com.nparashuram; | |
| import android.os.Process; | |
| import android.text.TextUtils; | |
| import android.util.Log; | |
| import android.view.View; | |
| import android.view.ViewTreeObserver; | |
| import com.facebook.react.ReactInstanceManager; | |
| import com.facebook.react.ReactNativeHost; | |
| import com.facebook.react.bridge.ReactContext; |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # vim style tmux config | |
| # use C-a, since it's on the home row and easier to hit than C-b | |
| set-option -g prefix C-a | |
| unbind-key C-a | |
| bind-key C-a send-prefix | |
| set -g base-index 1 | |
| # Easy config reload | |
| bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded." |