You can use a combination of command b , command f , the contents of % INC and c to quickly navigate your code.
c allows you to continue execution until you reach this line. This makes it easy to jump to an arbitrary point.
If you want to break a specific point in a module, look at the entry for that module in % INC (the key will be βSome / Module.pmβ if the module was Some :: Module ). The value for this key is the file from which the module was loaded. If the module is not already loaded, you can use it on the debugger command line, then see % INC .
After you have the file containing the code where you want to set the breakpoint, execute f filename to switch the debugger l (list) and text search commands ( / and ? - forward and backward, respectively) to look at this file, then set the desired breakpoint and c .
source share