in reply to inserting code in the debugger

Since the action is probably executed in an eval, return will only return from the eval. You might try goto instead.

UPDATE: Tried it out, it works. Just enter 'goto label' (without a, you can enter perl commands directly in the debugger) and it works. Drawback, you need a label at the place you want to go to