How do I change color of comments in visual studio code?

From 1.15 (July 2017) you can change it from settings.json Ctrl+, “editor.tokenColorCustomizations”: { “comments”: “#d4922f” }, From 1.20 (January 2018) you can also do it for each theme separately: “editor.tokenColorCustomizations”: { “[Atom One Dark]”: { “comments”: “#d4922f” } }, Or now you can specify settings for multiple themes at once as “[Atom One Dark][Tomorrow Night … Read more

Change the encoding of a file in Visual Studio Code

So here’s how to do that: In the bottom bar of VSCode, you’ll see the label UTF-8. Click it. A popup opens. Click Save with encoding. You can now pick a new encoding for that file. Alternatively, you can change the setting globally in Workspace/User settings using the setting “files.encoding”: “utf8”. If using the graphical … Read more