views:

12

answers:

1

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

A: 

The Scripts Debugger was updated to support some popular keyboard shortcuts:

  • Continue — F8 or Command-/ on a Mac or Control-/ on other platforms.
  • Step Over — F10 or Command- on a Mac or Control-’ on other platforms.
  • Step Into — F11 or Command-; on a Mac or Control-; on other platforms.
  • Step Out — Shift-F11 or Shift-Command-; on a Mac or Shift-Control-; on other platforms.
  • Next Call Frame — Control- . on all platforms.
  • Previous Call Frame — Control-, on all platforms.
  • Evaluate Selection When on a Breakpoint — Shift-Command-E on a Mac or Shift-Control-E on other platforms.

Credit goes to: http://webkit.org/blog/829/web-inspector-updates/

EDIT: I took me a lot of work to add those kbd tags so I expect a lot of upvotes.

CD Sanchez