我開始使用Visual Studio代碼。當前版本是0.3.0。
默認情況下,爲標籤插入縮進。
但我想插入4個空格,而不是標籤。
如何在Visual Studio代碼上爲Mac配置插入空格而不是製表符
我無法在首選項中找到配置項。
請告訴我,如何配置插入標籤或空格。
我開始使用Visual Studio代碼。當前版本是0.3.0。
默認情況下,爲標籤插入縮進。
但我想插入4個空格,而不是標籤。
如何在Visual Studio代碼上爲Mac配置插入空格而不是製表符
我無法在首選項中找到配置項。
請告訴我,如何配置插入標籤或空格。
你在找什麼是在keybindings.json。從菜單代碼 - >首 - >鍵盤快捷鍵
在右側窗格中,您可以將您的鍵綁定,例如:
{"key": "ctrl+t", "when": "editorTextFocus", "command": "editor.action.tab"}
雖然你可能會喜歡的東西一樣:
{"key": "ctrl+t", "when": "editorTextFocus", "command": " "}
問題是,它不起作用,因爲文檔說它應該!
請參閱:Customization of Visual Studio Code
已收到Microsoft已收到的行爲通知,並且還請求了選項卡處理首選項。
大約因爲0.9.0版本的配置是通過在settings.json文件修改下面的參數很容易到達:
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
"editor.tabSize": 4,
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
"editor.insertSpaces": true
對於其他設置和信息,請訪問VS代碼help部分。
謝謝你的回答。我希望微軟的下一次更新。 – hiroyky