Prevent autocomplete in Visual Studio Code

前端 未结 8 2007
臣服心动
臣服心动 2020-11-30 20:48

I\'m using the new Visual Studio Code, which is clearly not ready for prime time yet, but I\'m hoping to resolve a problem I\'m having.

In a SQL file, any time you ty

相关标签:
8条回答
  • 2020-11-30 21:44

    This works for me as of 2019-May-17.

    "editor.acceptSuggestionOnCommitCharacter": false,
    "editor.acceptSuggestionOnEnter": "off",
    "editor.hover.enabled": false,
    "editor.minimap.enabled": false,
    "editor.parameterHints.enabled": false,
    "editor.quickSuggestions": false,
    "editor.quickSuggestionsDelay": 10,
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "editor.suggestOnTriggerCharacters": false,
    "editor.wordBasedSuggestions": false,
    
    0 讨论(0)
  • 2020-11-30 21:45

    This may help you:

    editor.acceptSuggestionOnCommitCharacter: false
    
    0 讨论(0)
提交回复
热议问题