Reputation: 54984
How can I disable auto-complete in the vscode debugger?
If there's a way to make it not autocomplete when I'm inside of quotes that would be perfect.
Upvotes: 6
Views: 1368
Reputation: 81
According to this, in File->Preferences->Settings, toggle off debug.console.historySuggestions
, then history suggestion of debug console will be disabled. In debug.console
, there should also be an option for command completions, which depends on your debugger plugin. For CodeLLDB, it is Lldb: Command Completions
. Toggle off it, then the command auto-complete in debug console should be disabled.
Upvotes: 6