vim-repl
vim-repl copied to clipboard
Debug large projects
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!