vscode是一款開源的跨平臺編輯器。默認情況下,vscode使用的語言為英文(us),如何將其顯示語言修改成中文了?
1、打開vscode工具,在商店中搜索Chinese(Simplied) Lang,安裝即可;
2、使用快捷鍵組合【Ctrl+Shift+p】,在搜索框中輸入“configure display language”,點擊確定后;
3、修改locale.json文件下的屬性“locale”為“zh-CN”;
{ // Defines VS Code's display language. // See https://go.microsoft.com/fwlink/?LinkId=761051 for a list of supported languages. "locale":"zh-CN" // Changes will not take effect until VS Code has been restarted. }
4、重啟vscode工具。