vscode-edit-with-shell icon indicating copy to clipboard operation
vscode-edit-with-shell copied to clipboard

Possibility to set LANG to avoid utf-8 issues

Open soenderg opened this issue 3 years ago • 0 comments

If I have this text:

John;Doe;[email protected]
Jáne;Dóe;[email protected]

And do a column -t -c200 -s\; in a terminal with LANG="en_US.UTF-8", it correctly outputs:

John   Doe   [email protected]
Jáne   Dóe   [email protected]

Whereas in EditWithShell, it misses the special utf-8 characters and outputs:

John  Doe  [email protected]
Jáne   Dóe   [email protected]

It would be nice to set some kind of locale variables (or simply LANG) to make it produce the correct output.

soenderg avatar Mar 24 '23 09:03 soenderg