hey even I like to code without autocomplete… here is the way you can disable/enable autocomplete in vs code…
- Open Settings: Press
Ctrl + ,to open the Settings. - Configure C# Specific Settings:
- In the settings search bar, type
csharpto filter the settings related to C#.
- In the settings search bar, type
- Disable Accept Suggestion on Tab:
- Note : This solution disables acceptance of suggestions on Enter instead of removing gray useless suggestions.
- Type
editor.acceptSuggestionOnEnterin the search bar. - Set this option to
off.
- Disable Inline Suggestions:
- Search for
inlineSuggest.enabled. - Set it to
false.
- Search for
- Adjust IntelliSense Trigger Settings:
- Search for
editor.suggestOnTriggerCharacters. - Uncheck this option if you want to prevent suggestions from showing up automatically for C#.
- Search for
- Disable Tab Completion:
- Type
editor.tabCompletionin the search bar. - Set it to
off.
- Type
- Disable C# Specific IntelliSense Features:
- If you want to disable more specific IntelliSense features provided by the C# extension, search for
csharp.formatting.advanced. - Review and adjust settings as necessary.
- If you want to disable more specific IntelliSense features provided by the C# extension, search for
