sillybun / vim-repl

Best REPL environment for Vim
GNU General Public License v2.0
446 stars 39 forks source link

Debug large projects #123

Open Jerzy97 opened 3 years ago

Jerzy97 commented 3 years ago

Assume we have a project, where multiple classes are distributed over different files. Let's say we have one run.py file, which creates a bunch of instances of these classes and now we want to debug a specific class method.

Normally I would place a breakpoint() within the method and then simply call the run.py file. Is there a way to achieve this with vim-repl?

When using :REPLDebugStopAtCurrentLine - can we maybe specify a different file than the current one to be run?

Thanks in advance & I like your project!