pocco81 / dap-buddy.nvim

🐞 Debug Adapter Protocol manager for Neovim
GNU General Public License v3.0
400 stars 48 forks source link

fix: remove extra character in chrome debug path #36

Closed pedro757 closed 2 years ago

pedro757 commented 2 years ago

I don't know if this is needed but I was configuring my nvim-dap and I run this: :lua print(vim.inspect(require('dap').adapters))

chrome = {
  args = { "/home/pedro/.local/share/nvim/dapinstall/chrome//vscode-chrome-debug/out/src/chromeDebug.js" },
  command = "node",
  type = "executable"
}, 
node2 = {                                  
  args = { "/home/pedro/.local/share/nvim/dapinstall/jsnode/vscode-node-debug2/out/src/nodeDebug.js" },
  command = "node",
  type = "executable"
}

Note the double slash in the chrome debug path

pocco81 commented 2 years ago

Oops, thanks for fixing it :)