VSCode OI 使用配置

15 September 2018 | Duanyll | Tags: OI vscode

学校的电脑居然安装与运行VSCode不卡!(然而打开会卡两分钟)那我为什么还要用Dev-Cpp?下面贴出配置文件。建议安装C/C++扩展,使用Dev-Cpp的MinGW。

launch.json

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${file}.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "Compile",
            "miDebuggerPath": "C:/Program Files/Dev-Cpp/MinGW32/bin/gdb.exe",
        }
    ]
}

tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "GCC Compile",
            "type": "shell",
            "command": "g++",
            "args": [
                "${file}",
                "-o",
                "${fileBasename}.exe",
                "-g",
                "-Wall"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher":"$gcc",
            "options": {
                "cwd": "${fileDirname}"
            }
        }
    ]
}

keybindings.json

[
    {
        "key": "ctrl+f11",
        "command": "workbench.action.tasks.test"
    }
]