Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sublime.log_commands(True) for vscode

In SublimeText you can open the console and enter sublime.log_commands(True) to force sublime to log every single command which is ran by the editor. It helps a lot to understand what's going on and to find out which commands you should do your key binding on.

I just want to know if there's something similar in VSCode?

like image 349
Allen Bargi Avatar asked Dec 03 '16 14:12

Allen Bargi


1 Answers

In update 1.20.1 available logs:

https://code.visualstudio.com/updates/v1_20#_output-panel

Extension logging:

https://code.visualstudio.com/updates/v1_20#_extension-logging

Commands (see log commands):

https://code.visualstudio.com/updates/v1_20#_new-commands

For example tap Ctrl + P:

then > and printing:

Developer: Open Logs Folder

Developer: Show Logs...

... and other commands.

like image 86
Dmitry S. Avatar answered Sep 23 '22 17:09

Dmitry S.