Giter VIP home page Giter VIP logo

Comments (3)

yyoncho avatar yyoncho commented on June 2, 2024

Try adjusting dap-ui-variable-length ?

from dap-mode.

emilhjd avatar emilhjd commented on June 2, 2024

I set it to 100 and no difference.

(setq dap-ui-variable-length 100)

Doing rgrep though dap-mode folder it looks to be at 20 by default.

(defcustom dap-ui-variable-length 30
  "Default number of variables to load in inspect variables view for
array variables."
  :group 'dap-ui
  :type 'number)

from dap-mode.

emilhjd avatar emilhjd commented on June 2, 2024

Getting closer to fixing the issue. If i remove the duplicated start, filter, and count arguments I get the expected behavior.

I have no idea what other consequences this will have but with this patch it works as expected.

diff --git a/dap-ui.el b/dap-ui.el
index 51e010e..8fd4e7c 100644
--- a/dap-ui.el
+++ b/dap-ui.el
@@ -843,16 +843,7 @@ issue requests.
 VARIABLES-REFERENCE specifies the handle returned by the debug
 adapter for acquiring nested variables and must not be 0."
   (when (dap--session-running debug-session)
-    (->> (apply #'dap-request debug-session "variables"
-                :variablesReference  variables-reference
-                (append (when (and indexed-variables (< 0 indexed-variables))
-                          (list :start 0
-                                :filter "indexed"
-                                :count (1- (min indexed-variables dap-ui-default-fetch-count))))
-                        (when (and named-variables (< 0 named-variables))
-                          (list :start 0
-                                :filter "named"
-                                :count (1- (min named-variables dap-ui-default-fetch-count))))))
+    (->> (dap-request debug-session "variables" :variablesReference  variables-reference)
          (gethash "variables")
          (-map (-lambda ((&hash "value"
                                 "name"

Sending:

{
  "command": "variables",
  "arguments": {
    "variablesReference": 1002
  },
  "type": "request",
  "seq": 11
}

Received:

{
  "seq": 0,
  "type": "response",
  "request_seq": 11,
  "success": true,
  "command": "variables",
  "body": {
    "variables": [
      {
        "name": "len()",
        "value": "2",
        "type": "int",
        "evaluateName": "len(m)",
        "variablesReference": 0
      },
      {
        "name": "\"1\"",
        "value": "1",
        "type": "string: int",
        "evaluateName": "m[\"1\"]",
        "variablesReference": 0
      },
      {
        "name": "\"2\"",
        "value": "2",
        "type": "string: int",
        "evaluateName": "m[\"2\"]",
        "variablesReference": 0
      }
    ]
  }
}

Screenshot 2023-09-01 at 09 56 49

from dap-mode.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.