How can I get the Perl debugger and gVim to work together on Linux?

Is there a way to get the Perl and gVim debugger to work together on Linux? That is, step through the code in gVim and see the values โ€‹โ€‹of the observable variables that control the debugger from gVim?

+6
debugging vim perl
source share
2 answers

You can try this vim script: http://vim.sourceforge.net/scripts/script.php?script_id=663 for debugging perl scripts in your vim editor.

+2
source share

This is a decent plugin with some debugger integration: http://www.vim.org/scripts/script.php?script_id=556 .

+2
source share

All Articles