2017-06-27 38 views
2

最近開始使用Visual Studio Code for我的node.js工作,除了一件事情讓我困擾之外,我發現它非常酷。如何禁用這些VSC工具提示?

tooltip

每當我打字,這些工具提示顯示出來。有沒有辦法禁用這些?

謝謝

回答

2

有幾種方法可以自定義vscode中的IntelliSense。我相信你的圖片中的一個是參數提示。您可以轉到文件/首選項/設置並搜索parameterHints。這裏有一些其他的你可以調整:

// Controls if quick suggestions should show up while typing 
    "editor.quickSuggestions": true, 

    // Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions. 
    "editor.acceptSuggestionOnEnter": true, 

    // Controls the delay in ms after which quick suggestions will show up. 
    "editor.quickSuggestionsDelay": 10, 

    // Enable word based suggestions 
    "editor.wordBasedSuggestions": true, 

    // Enable parameter hints 
    "editor.parameterHints": true 

此處瞭解詳情:https://code.visualstudio.com/docs/editor/intellisense#_customizing-intellisense

+0

非常感謝您! –