vscode-code-runner icon indicating copy to clipboard operation
vscode-code-runner copied to clipboard

Problem encoding special chars on C language

Open Pvazevedo opened this issue 3 years ago • 0 comments

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",

image image

Pvazevedo avatar Jul 22 '22 04:07 Pvazevedo