2017-10-09 86 views
0

在關閉HTML標記(例如底部圖像)時,Microsoft VS代碼中,當前位置將移動到第一列並刪除製表符縮進。然後我需要再次用選項卡手動縮進。我該如何解決它?在VS代碼中關閉HTML標記時再次需要手動縮進

GIF Example - please click here…

我settings.json文件:

 
... 
"editor.detectIndentation": false, 
"editor.wrappingIndent": "none", 
"editor.trimAutoWhitespace": false, 
"files.trimTrailingWhitespace": false, 
"files.insertFinalNewline": true, 
"html.format.endWithNewline": false, 
... 
+0

'「editor.detectIndentation」:false,'是你的問題。讓那個'真實' – ifconfig

回答

0

在你settings.json"editor.detectIndentation": false,是你的問題。做那true

... 
"editor.detectIndentation": true, 
"editor.wrappingIndent": "none", 
"editor.trimAutoWhitespace": false, 
"files.trimTrailingWhitespace": false, 
"files.insertFinalNewline": true, 
"html.format.endWithNewline": false, 
... 
2

settings.json設置選項:

 

    "editor.detectIndentation": true, 
    "editor.autoIndent": false 

,它的工作現在。固定。