Reputation: 95
I'm just starting out learning html/css in vscode and came across this issue.
<input type="text" name="" id="">
name=
, as expected<label for="test1">
, and then an <input...
, you would not get the test1
suggestion when typing in the "pre-selected" syntax.Am I missing something?
Example here: https://streamable.com/hgwtyp
Upvotes: 1
Views: 3840
Reputation: 567
You have to press ctrl+space there to get suggestions immediately. Also, you can modify the config like:
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.acceptSuggestionOnCommitCharacter": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.quickSuggestionsDelay": 10,
"editor.suggestOnTriggerCharacters": true,
"editor.tabCompletion": "on",
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "recentlyUsed",
"editor.wordBasedSuggestions": true,
"editor.parameterHints.enabled": true,
Upvotes: 0
Reputation: 95
Someone else on github pointed me in the right direction. This is what I was after:
"editor.suggest.snippetsPreventQuickSuggestions": false
Upvotes: 3