我最近开始使用Vs-Code 的Code Runner Extension并且尽管检查了它,它仍然会打印文件路径,以及一些不需要的代码,之后它会打印输出,但它不干净,看起来很乱并且难以阅读输出。这就是它的作用。"code-runner.showExecutionMessage": false
PS [path] \VsCode\ProblemSolving> cd "[path] \VsCode\ProblemSolving"
PS [path] \VsCode\ProblemSolving> cd "[path] \VsCode\ProblemSolving\" ; if ($?)
{ g++ CodingCompetitionTools.cpp -o CodingCompetitionTools } ; if ($?) { .\CodingCompetitionTools }
这在实际程序输出之前,我不想看到这个,只是干净的程序输出。
代码运行器的设置.json
"code-runner.defaultLanguage": "c++",
"code-runner.saveAllFilesBeforeRun": true,
"code-runner.saveFileBeforeRun": true,
"code-runner.fileDirectoryAsCwd": true,
"code-runner.showExecutionMessage": false,
"code-runner.clearPreviousOutput": true,
"code-runner.runInTerminal": false,