VS Code extension designed for OIer and ACMer, used to run single file program.
Defines the tasks available in the run panel and their corresponding compilation and execution commands.
Format:
{
"oi-runner-2.tasks": {
"C++": { // Task label
"compile": [ // Compilation command and arguments
"g++",
["${file}", "-o${fileNoExt}", "-std=c++14", "-O2"] // The use of ${} is explained below
],
"execute": [ // Execution command, required
"${fileNoExt}${execExt}",
[]
]
},
"Python": {
// The compilation command can be empty; the compile button will not be displayed when this task is selected
"execute": [
"python",
["${file}"]
]
}
// ...
}
}
There are special strings in the commands and arguments that will be replaced with actual information when executed:
Special String | Replaced With |
---|---|
${file} |
The absolute path of the source file |
${fileNoExt} |
The absolute path of the source file without the extension |
${execExt} |
The extension of the executable file, .exe on Windows, an empty string on other systems |
The working directory is the opened folder.
Defines the default task selected in the run panel when a file is opened.
Format:
{
"oi-runner-2.tasks": {
"C++": { /* ... */ },
"Python": { /* ... */ }
},
"oi-runner-2.defaultTask": {
".py": "Python" // Files with the .py extension default to Python
// Others default to the first task defined in oi-runner-2.tasks, which is C++ in this example
}
}
Whether to add OI Runner++ to the editor title menu.
If disabled, you need to press Ctrl + Shift + P and search for Launch OI Runner++
to open the run panel.
Format: true
(default) or false
.
This project is deeply inspired by OI Runner. Thanks to @CmdBlockZQG and other contributors of OI Runner.