Bug in VS Code output terminal characters

Asked

Viewed 825 times

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 answer

1

To resolve manually modify the configuration from the Vscode terminal.

"terminal.integrated.shellArgs.windows": ["/k", "chcp 850"]
  • If a return does not work, I do not use Vscode. The information I took from the web and adapted to codepage en(850).

  • Not solved, I use bash as default terminal with this code would change the default terminal, my error occurs in the output terminal.

  • @Márciosebastião inside the tasks.json modify "command": "cmd", "args": ["/c chcp 850 >nul && mingw32-make"]

  • I really appreciate your help, but still not solved, it occurred that my terminal was changed and the output still with the same bug

Browser other questions tagged

You are not signed in. Login or sign up in order to post.