one-small-step-for-vimkind icon indicating copy to clipboard operation
one-small-step-for-vimkind copied to clipboard

Debug adapter for Neovim plugins

Results 7 one-small-step-for-vimkind issues
Sort by recently updated
recently updated
newest added

In the latest nightly build `NVIM v0.7.0-dev+667-g419e0d117d` `:lua require"osv".run_this()` or `:lua require"osv".launch()` results in the following error ``` E5108: Error executing lua Vim:Error invoking 'nvim_exec_lua' on channel 10: Error executing...

If I do the following: 1. Start `nvim my_file.lua` 2. `:lua require 'osv'.launch()` 3. Launch another `nvim my_file.lua` 4. Set a breakpoint in the second client 5. `:lua require 'dap'.continue()`...

First, ty for this really wonderful plugin, I was able to set it up nicely to work when running `lua require'dap'.continue()` so I can avoid calling `run_this()` or the triple...

Hello, I was able to set it up using the provided default config: ``` local dap = require"dap" dap.configurations.lua = { { type = 'nlua', request = 'attach', name =...

If set breakpoint on function that will be called after the lua file loaded, seems the breakpoint not work.

I am using one-small-step-for-vimkind in a LazyVim setup, altogether with nvim-dap and nvim-dap-ui. Almost everything works fine (breakpoints, step-into, widgets, ...). However, the output to stdout (either via print or...

idk if this is possible or easy to fix but I thought I'd go ahead and create this issue anyway for reference/help/feedback. It's not a huge deal, but it does...