Are there keyboard shortcuts for the Safari debugger?

Viewed 11222

Firebug and eclipse both let me step through code using function keys. Does Safari have equivalent capabilities?

4 Answers

You can also use ⌃⌘Y or ⌘\ to pause the Safari JS debugger when the Debugger tab is active.

Tooltips are your friend :)

In my case is different, I'm using Safari 13 on macOS (Catalina)

  • F6 - Step over
  • F7 - Step into
  • F8 - Step out

I found these from here

Related