ctrl + shift + P >> Preferences: Open Current Profile Setting (JSON)
20230719
CODE RUNNER SETTING
"code-runner.executorMap": {
"python": "set PYTHONIOENCODING=utf8 && cd $dir && $pythonPath -u $fullFileName",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"powershell": "powershell -ExecutionPolicy ByPass -File",
"csharp": "cd $dir && dotnet run $fileName",
},

0 댓글