This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 205960 - Exclude files from debugging (auto step out).
Summary: Exclude files from debugging (auto step out).
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 7.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-12-05 19:10 UTC by paolosca
Modified: 2011-12-05 19:10 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description paolosca 2011-12-05 19:10:58 UTC
We use a several external libraries in our projects and it would be nice to exclude them from the debugging process.

In example we generate PDF reports using tcpdf, and most line are like the following:

$pdf->Cell($w[1], 7, $data, "B", 0, "C", 0);

When I do debugging step by step, pretty much every line tcpdf.php is opened and I have to click step out to go back to my code. This makes the debugging process very annoying.

It would be nice if there was an option to exclude files, in example files marked as ignored from debugging should auto step out whenever the debugger enters them.

It doesn't need to be an option of the file, perhaps it would be enough a new button in the debugger toolbar called "exclude file", when pressed it will step out and keep stepping out automatically from the same file for the duration of the debug session. 

Thanks,

Paolo.