Toob Player
This commit is contained in:
Vendored
+21
-1
@@ -135,5 +135,25 @@
|
||||
"cSpell.ignoreWords": [
|
||||
"nammodel"
|
||||
],
|
||||
"cSpell.enabled": false
|
||||
"cSpell.enabled": false,
|
||||
|
||||
// Disable all automatic completion suggestions - only show when Ctrl+Space is pressed
|
||||
"editor.quickSuggestions": {
|
||||
"other": false,
|
||||
"comments": false,
|
||||
"strings": false
|
||||
},
|
||||
|
||||
// Disable suggestions on trigger characters (like . or :)
|
||||
"editor.suggestOnTriggerCharacters": false,
|
||||
|
||||
// Disable word-based suggestions from open files
|
||||
"editor.wordBasedSuggestions": "off",
|
||||
|
||||
// Don't accept suggestions on Enter (optional)
|
||||
"editor.acceptSuggestionOnEnter": "off",
|
||||
|
||||
// Disable parameter hints popup (optional)
|
||||
"editor.parameterHints.enabled": false,
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user