scalacenter / scala-debug-adapter

Implementation of the Debug Adapter Protocol for Scala

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add step filter configuration

bishabosha opened this issue · comments

add configuration compatible with vscode launch.json, that allows fine grained control over the step-into functionality of the debugger (and possibly also the stack trace filtering)

some ideas:

  • skip classes in (package foo/static path bar/library x)
  • only pause on classes in (package foo/static path bar/library x)
  • only pause on classes in x, y, z subproject
  • skip $JDK, $SCALA_LIB, etc (special tokens for various "Standard" libraries)