Last active
December 13, 2018 13:17
-
-
Save data-scientist-ml1/d798b10331756e3415f051f9c9722db7 to your computer and use it in GitHub Desktop.
Turn off auto-complete (intellisense) in VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Turn off autocomplete in Visual Studio Code | |
// Adapted From https://ourcodeworld.com/articles/read/505/how-to-disable-autocompletion-and-intellisense-in-microsoft-visual-studio-code | |
// Add the following lines to user settings | |
// OPTIONAL WORD WRAPPING | |
// Controls if lines should wrap. The lines will wrap at min(editor.wrappingColumn, viewportWidthInColumns). | |
"editor.wordWrap": "off", | |
// Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'. | |
"editor.wrappingIndent": "none", | |
// TURN OFF AUTOCOMPLETION | |
// Controls if quick suggestions should show up or not while typing | |
"editor.quickSuggestions": false, | |
// Controls the delay in ms after which quick suggestions will show up | |
"editor.quickSuggestionsDelay": 90, | |
// Enables parameter hints | |
"editor.parameterHints.enabled": false, | |
// Controls if suggestions should automatically show up when typing trigger characters | |
"editor.suggestOnTriggerCharacters": false, | |
// Controls if suggestions should be accepted 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. | |
"editor.acceptSuggestionOnEnter": "off", | |
// Controls whether completions should be computed based on words in the document. | |
"editor.wordBasedSuggestions": false, | |
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, | |
// the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character. | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment