vscode でフォルダーを開けたら、特定の動作を開始2024年02月01日 12時50分45秒

vscode で tasks.json を使うと、フォルダーを開けたりした時に、自動処理を開始することが出来る。

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
    {
        "label": "Workshop launcher",
        "type": "shell",
        "command": "./init.sh",
        "runOptions": {
            "runOn": "folderOpen"
        },
        "problemMatcher": []
    }
    ]
}