Using the T command in the Perl debugger produces a stack backtrace similar to
$ = main::infested called from file 'Ambulation.pm' line 10
@ = Ambulation::legs(1, 2, 3, 4) called from file 'camel_flea' line 7
$ = main::pests('bactrian', 4) called from file 'camel_flea' line 4
(example copied from https://perldoc.perl.org/perldebug). When running the Perl debugger from Emacs (via M-x perldb), such a stack backtrace shows up as regular text in the debugger buffer, without any magic to quickly navigate to one of the mentioned lines in the mentioned files to see its context. I have to open the relevant file by hand and then navigate to the mentioned line. Can this be made more convenient?