nvim-telescope / telescope-dap.nvim

Integration for nvim-dap with telescope.nvim
MIT License
323 stars 23 forks source link

Add support for nvim-dap >= 0.8 #24

Closed cryptomilk closed 4 days ago

cryptomilk commented 3 months ago

Fixes #23

cryptomilk commented 3 months ago

This might be the wrong way to fix it. The pick_one function uses vim.ui.select() which can be replaced. This is done by:

https://github.com/nvim-telescope/telescope-ui-select.nvim

gcalmettes commented 2 months ago

Confirming that this works perfectly. Thanks @cryptomilk

cryptomilk commented 1 week ago

Ping

cryptomilk commented 1 week ago

@Conni2461 @theHamsta @zoriya @JRasmusBm

gierdo commented 4 days ago

Ping, as well :)

I solved it like this for me until this has been merged:

      local dap_ui = require("dap.ui")
      local original_pick_one = dap_ui.pick_one
      telescope.load_extension("dap")
      dap_ui.pick_one = original_pick_one
Conni2461 commented 4 days ago

Thanks :)