feat: emoji commit message generator
This commit is contained in:
24
tasks/assets/emoji_list.txt
Normal file
24
tasks/assets/emoji_list.txt
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
:broom: │ 🧹 │ clean, cleanup, remove
|
||||||
|
:recycle: │ ♻️ │ recycle, actor
|
||||||
|
:wrench : │ 🔧 │ adjustment, rection, adapter
|
||||||
|
:gear: │ ⚙️ │ adjustment
|
||||||
|
:control_knobs: │ 🎛 │ config, adjustment
|
||||||
|
:bug: │ 🐛 │ bug
|
||||||
|
:zap: │ ⚡️ │ speeded
|
||||||
|
:bar_chart: │ 📊 │ analytics, chart
|
||||||
|
:chart_with_upwards_trend: │ 📈 │ analytics, chart, upwards
|
||||||
|
:package: │ 📦 │ package, wrap, ture
|
||||||
|
:fire: │ 🔥 │ fire, fix
|
||||||
|
:sparkles: │ ✨ │ new, feature
|
||||||
|
:nail_care: │ 💅 │ styles, prettify
|
||||||
|
:art: │ 🎨 │ styles, colors
|
||||||
|
:lipstick: │ 💄 │ styles, prettify
|
||||||
|
:white_check_mark: │ ✅ │ check, done
|
||||||
|
:test_tube: │ 🧪 │ test, testing
|
||||||
|
:pencil: │ 📝 │ docs
|
||||||
|
:warning: │ ⚠️ │ warning
|
||||||
|
:no_entry_sign: │ 🚫 │ cancel
|
||||||
|
:rotating_light: │ 🚨 │ alert, ect
|
||||||
|
:mag_right: │ 🔎 │ search
|
||||||
|
:old_key: │ 🗝 │ dentials
|
||||||
|
:rocket: │ 🚀 │ shipping
|
||||||
11
tasks/commit-stradi.sh
Normal file
11
tasks/commit-stradi.sh
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
emoji="$(cat ~/.config/zed/tasks/assets/emoji_list.txt | fzf | awk -F' ' '{print $1}')"
|
||||||
|
|
||||||
|
branch="$(git branch --show-current | awk -F'/' '{print $2}')"
|
||||||
|
|
||||||
|
message="[$branch] $emoji "
|
||||||
|
|
||||||
|
echo -n $message | pbcopy
|
||||||
|
|
||||||
|
echo "$message copied to clipboard"
|
||||||
Reference in New Issue
Block a user