mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
html: add setting to disable end tag suggestions (#269605)
Add html.suggest.hideEndTagSuggestions setting to allow users to disable automatic end tag completion suggestions. When enabled, prevents the completion provider from suggesting closing tags for open elements (e.g., </body> when typing after <body>). Fixes microsoft/vscode-html-languageservice#216 Signed-off-by: Giovanni Magliocchetti <giovimag123@gmail.com>
This commit is contained in:
committed by
GitHub
parent
b42e7ba8b4
commit
00673479b7
@@ -182,6 +182,12 @@
|
||||
"default": true,
|
||||
"description": "%html.suggest.html5.desc%"
|
||||
},
|
||||
"html.suggest.hideEndTagSuggestions": {
|
||||
"type": "boolean",
|
||||
"scope": "resource",
|
||||
"default": false,
|
||||
"description": "%html.suggest.hideEndTagSuggestions.desc%"
|
||||
},
|
||||
"html.validate.scripts": {
|
||||
"type": "boolean",
|
||||
"scope": "resource",
|
||||
|
||||
Reference in New Issue
Block a user