Skip to content

Commit 19021a4

Browse files
committed
Add Icon Browser task to tasks.json for easier icon management
1 parent e24572c commit 19021a4

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.vscode/tasks.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -903,5 +903,32 @@
903903
"clear": true,
904904
},
905905
},
906+
{
907+
"label": "🖼️ Icon Browser",
908+
"command": "${command:python.interpreterPath}",
909+
"args": [
910+
"scripts/run_with_env.py",
911+
"${command:python.interpreterPath}",
912+
"-m",
913+
"guidata.widgets.iconbrowser",
914+
"${workspaceFolder}/datalab/data/icons",
915+
],
916+
"options": {
917+
"cwd": "${workspaceFolder}",
918+
},
919+
"group": {
920+
"kind": "build",
921+
"isDefault": true,
922+
},
923+
"presentation": {
924+
"clear": true,
925+
"echo": true,
926+
"focus": false,
927+
"panel": "dedicated",
928+
"reveal": "always",
929+
"showReuseMessage": true,
930+
},
931+
"type": "shell",
932+
},
906933
],
907934
}

0 commit comments

Comments
 (0)