-
-
Notifications
You must be signed in to change notification settings - Fork 43
Implement paging for variables #398
Comments
If we use a |
We should probably use a streaming adapter to make sure we don't get flooded and to accommodate the paging built into the debug adapter protocol. |
Using the streaming adapter sounds good 👍 I quickly tried using the |
As a start, there could be a new test that makes use of the https://github.com/jupyterlab/debugger/blob/master/tests/src/session.spec.ts |
There is no support for pagination, probably... Any suggestions? |
This limitation of 300 variables comes from pydev itself. EDIT: I opened an issue to remove it (or get the ability to set it from the outside). |
Moving to Future as the limit of 300 variables is still in |
At the moment the variable table will show a
Too large to show contents. Max items to show: 300
message if a user decides to show alist
with more than 300 entries:The DAP supports
start
andcount
for thevariables
request, which can be using to implement paging: https://microsoft.github.io/debug-adapter-protocol/specification#Requests_VariablesThe text was updated successfully, but these errors were encountered: