Skip to content

Commit 7c32557

Browse files
committed
Add: Create Icon Browser task in tasks.json for easier access to icon resources
1 parent b12785f commit 7c32557

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.vscode/tasks.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -544,5 +544,32 @@
544544
"🧪 Coverage tests",
545545
],
546546
},
547+
{
548+
"label": "🖼️ Icon Browser",
549+
"command": "${command:python.interpreterPath}",
550+
"args": [
551+
"scripts/run_with_env.py",
552+
"${command:python.interpreterPath}",
553+
"-m",
554+
"guidata.widgets.iconbrowser",
555+
"${workspaceFolder}/plotpy/data/icons",
556+
],
557+
"options": {
558+
"cwd": "${workspaceFolder}",
559+
},
560+
"group": {
561+
"kind": "build",
562+
"isDefault": true,
563+
},
564+
"presentation": {
565+
"clear": true,
566+
"echo": true,
567+
"focus": false,
568+
"panel": "dedicated",
569+
"reveal": "always",
570+
"showReuseMessage": true,
571+
},
572+
"type": "shell",
573+
},
547574
],
548575
}

0 commit comments

Comments
 (0)