rust_hdl_vscode icon indicating copy to clipboard operation
rust_hdl_vscode copied to clipboard

Change option file encoding

Open AquariusStar opened this issue 5 years ago • 1 comments

Change option "files.encoding": "iso88591" to "utf8". I'm tired of editing the option every time I update it. All localization is lost completely. Altera/Intel Quartus uses UTF-8 by default. Xilinx Vivado uses Windows-1251, but allows the use of UTF-8.

AquariusStar avatar Oct 06 '20 07:10 AquariusStar

Add this to your settings.json:

"[vhdl]": {
    "files.encoding": "utf8"
}

or search for @lang:vhdl encoding in Settings (UI) and change it there: image

This will override the plugin's package.json, so there is no need to edit that file.

rhenescu avatar Jan 25 '23 22:01 rhenescu