mfussenegger / nvim-dap

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

Error message when step through debugging #1331

Closed cnmarinas closed 2 months ago

cnmarinas commented 2 months ago

Debug adapter definition and debug configuration

      require("dap").adapters["codelldb"] = {
        type = "server",
        host = "127.0.0.1",
        port = "${port}",
        executable = {
          command = "codelldb",
          args = {
            "--port",
            "${port}",
          },
        },
  }

Debug adapter version

latest nightly build

Steps to Reproduce

  1. Set break point
  2. Start debugging
  3. when Step over any line, the error message will pop up

Expected Result

No Error message

Actual Result

dapDebug

Not sure this is issue from Treesitter of nvim-dap.