3
In my output terminal the accented letters and the "Ç" are replaced by interrogation, someone knows how to fix it?
Example:
Compila��o com �xito.
0 Aviso(s)
0 Erro(s)
3
In my output terminal the accented letters and the "Ç" are replaced by interrogation, someone knows how to fix it?
Example:
Compila��o com �xito.
0 Aviso(s)
0 Erro(s)
1
To resolve manually modify the configuration from the Vscode terminal.
"terminal.integrated.shellArgs.windows": ["/k", "chcp 850"]
Browser other questions tagged visual-studio visual-studio-code ide
You are not signed in. Login or sign up in order to post.
If a return does not work, I do not use Vscode. The information I took from the web and adapted to codepage en(850).
– Augusto Vasques
Not solved, I use bash as default terminal with this code would change the default terminal, my error occurs in the output terminal.
– Márcio Sebastião
@Márciosebastião inside the
tasks.json
modify "command": "cmd", "args": ["/c chcp 850 >nul && mingw32-make"]– Augusto Vasques
I really appreciate your help, but still not solved, it occurred that my terminal was changed and the output still with the same bug
– Márcio Sebastião