VS Code ‐ Config - cunhapaulo/Referencecard GitHub Wiki

Configuração para compilação direta via ctrl+shift+B

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Compile Pandoc/LaTeX",
            "type": "shell",
            "args": [
                "${fileBasenameNoExtension}"
            ],
            "windows": {
                "command": ".cmd/compile.cmd"
            },
            "osx": {
                "command": ".cmd/compile.sh"
            },
            "linux": {
                "command": ".cmd/compile.sh"
            },
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

Link para documento sobre tasks.json