Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Chrome JavaScript Debugger keybindings?

I am using Chrome's JavaScript debugger to work on my code, but I am finding it very inconvenient to constantly move my mouse over to the Go, Step Over and Step In buttons. I find it much easier to hit a function key, like I would in Visual Studio or most graphical debuggers really, do perform those actions.

I can not find any documentation to suggest that such keybindings are available, but I can scarcely believe that such crucial functionality would be over-looked by the Chromium team.

Can anyone offer any help or insight?

like image 823
Adam Crossland Avatar asked Dec 28 '22 17:12

Adam Crossland


2 Answers

If you press F1 while in the debugger, you can see a list of shortcuts.

Examples:
- F8 or <Ctrl>+/ : Continue
- F10 or <Ctrl>+' : Step over
- F11 or <Ctrl>+; : Step into
- <Shift>+F11 or <Ctrl>+<Shift>+; : Step out
- <Ctrl>+G : Go to Line

like image 143
Digital Plane Avatar answered Dec 30 '22 06:12

Digital Plane


I believe this is what you are looking for http://trac.webkit.org/wiki/WebInspector

like image 34
MrGreen Avatar answered Dec 30 '22 07:12

MrGreen