vscode-code-runner
vscode-code-runner copied to clipboard
Problem encoding special chars on C language
How to change encoding on C files? I'm trying to configure code runner to run files in c. It works, but it has problems displaying special characters. I wanted to know how do I configure the encoding in executorMap.
I know for python it's "python": "cd $dir && set PYTHONIOENCODING=iso8859-1 && python $fileName",
And for java it's "java": "cd $dir && javac -encoding utf8 $fileName && java $fileNameWithoutExt",
