mfussenegger / nvim-dap

Debug Adapter Protocol client implementation for Neovim
GNU General Public License v3.0
5.08k stars 178 forks source link

Switching repl between multiple sessions #1222

Open freezlite opened 1 month ago

freezlite commented 1 month ago

Problem Statement

Right now repl buf shows all output from all sessions. It would be nice to switch between sessions to see different output.

Possible Solutions

No response

Considered Alternatives

No response

mfussenegger commented 1 month ago

The recommended way to work with multiple session is to make use of the terminal feature (:help dap-terminal). Otherwise you could override the output handler (:help dap.defaults, see `on_output)

I currently have no plans to split up the repl per session.