Add ability to configure copy mode

This commit is contained in:
2026-06-29 20:34:59 +02:00
parent 9d4406ee54
commit 6e5e40e111
2 changed files with 42 additions and 6 deletions
+14 -1
View File
@@ -18,7 +18,20 @@
"mode": "view"
}
],
"preferences": [],
"preferences": [
{
"name": "copyFormat",
"title": "Copy Format",
"description": "What to copy to the clipboard when selecting a gitmoji.",
"required": false,
"type": "dropdown",
"data": [
{ "title": "Unicode Emoji", "value": "emoji" },
{ "title": "Gitmoji Code", "value": "code" }
],
"default": "emoji"
}
],
"scripts": {
"build": "vici build",
"dev": "vici develop",