Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 778
pguardiario Avatar asked Feb 11 '19 01:02

pguardiario


People also ask

How do I stop auto debugging in Visual Studio?

To end a debugging session in Microsoft Visual Studio, from the Debug menu, choose Stop Debugging.


1 Answers

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.

like image 124
Akarin Avatar answered Nov 01 '22 17:11

Akarin