-
-
Notifications
You must be signed in to change notification settings - Fork 247
Description
Debug adapter definition and debug configuration
I am using the most up to date version of nvim-dap (see the end of this issue for more info) but it seems the REPL cannot represent multi-line based objects (numpy arrays, pandas dataframes...):
There is a very similar to this issue: #169
However, I would say the root cause to be different. The problem in that issue was the replacement of the \n char via text = text:gsub('\n', ' ') -- Might make sense to change this and preserve newlines? in nvim-dap/lua/dap/ui.lua. But this issue was fixed long time ago as this sustitution is not taking place. That's why I create this other issue.
I am using the most up to date commits from this tool:
Debug adapter version
No response
Steps to Reproduce
- Create any numpy array
- Visualize it in REPL
Expected Result
I would expect a numpy array rendered in multiple lines.
Actual Result
I see a numpy array unwrapped along the same line