JacquesLucke / blender_vscode

Visual Studio Code extension for Blender development.
MIT License
545 stars 74 forks source link

How to remember the path to the Blender executable? #102

Open johschmitz opened 3 years ago

johschmitz commented 3 years ago

Everytime I launch blender with command:blender.start it asks me for the path to the blender executable. How can I make it remember the path?

I also would like to use it in tasks.json and just press CTRL+SHIFT+B to launch blender without pressing RETURN to confirm the path over and over again like this:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Launch Blender",
            "command": "${command:blender.start}",
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}