rust_hdl_vscode
rust_hdl_vscode copied to clipboard
Change option file encoding
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.
Add this to your settings.json:
"[vhdl]": {
"files.encoding": "utf8"
}
or search for @lang:vhdl encoding in Settings (UI) and change it there:

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