In Delphi: How to skip sections of code while debugging?

前端 未结 8 1229
有刺的猬
有刺的猬 2020-12-24 04:18

I often accidently step into code that I\'m not interested in while debugging in Delphi.

Let\'s start by saying that I know that you can step over with F8, and that

8条回答
  •  一向
    一向 (楼主)
    2020-12-24 04:55

    AFAIK, the debugger is only aware of the files in Browsing Path that you can modify in Options. So if you exclude the paths of modules you're not interested in debugging that will give the effect of what you want to do.

    One caveat: code completion also relies on Browsing Path so you might run into occasions that code completion falls short when needed.

提交回复
热议问题