pguardiario
pguardiario

Reputation: 54984

Disable auto-complete in vscode debugger

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.enter image description here

Upvotes: 6

Views: 1368

Answers (1)

Akarin
Akarin

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

Related Questions