Neovim Plugin: nvim-dap

preview_player
Показать описание
Short video on how to use and configure the Neovim plugin nvim-dap to debug applications in Neovim.

If you have any questions, please leave a comment.

Contact:

#neovim
#vim
Рекомендации по теме
Комментарии
Автор

Timestamps:
0:12 - Demo: attach debugger
0:58 - Demo: debug tests
1:22 - Configuration
3:18 - Comparison

CurtisSheldon-cn
Автор

From a somewhat experienced dap user: this is great

CZiNTrPT
Автор

im trying to set it up with my packer so that it writes the node output to a file. I spend quite some time on this but i cannot figure it out.

I have the loop in the nvim-dap

for _, language in ipairs(js_based_languages) do
dap.configurations[language] = {
{
type = "pwa-node",
request = "launch",
name = "Launch file",
program = "${file}",
cwd = vim.fn.getcwd(),
sourceMaps = true,
trace = true,
console = 'externalTerminal',
outputCapture = "std",
},
but i dont know if there is a way to redirect the output from terminal to a file?

princeofexcess
Автор

Good stuff over here. Thanks for this.

YourCompanyCTO
Автор

Just a heads up, I noticed the link to your Nvim config in the description doesn't work :) YouTube seems to insert some trailing characters.

smjonas
Автор

Hi thanks for this!

In your previous vimspector video, you mention a way to send an expression to watch list. Is there a way to do the same in nvim-dap-ui? Best,

jorgefernandez
Автор

Nice. Just starting with trying to get my head around Neovim, nice to see the capabilities.
Out of curiosity what is displaying your keystrokes in bottom right?

birmanets
Автор

What's the keystroke indicator you're using?

dpawensza
Автор

Would be possible to do video on how setup dap debug on Neovim for C/C++? I new to all... C, Linux, Neo-vim.. But I have Neovim set up good now debug is only thing left. But not sure of in Linux/neovim

zennmyst
Автор

Hi mate,

Is there a way to make the emoji signs kind of global to all the adapters?

Thanks

ebiscaia
Автор

Hi, I'm curious. what the things in the bottom? is that tmux? or vim tab? and would you mind to share the theme? Thanks

rmrvubl
Автор

Great video - thanks for this! Will the same work if in a running Docker container?

stevrev
Автор

What is the font you are using? It's pretty nice!
Also, what's your colorscheme?

williamhsieh
Автор

Hey, first of all, thank you for this awesome content. Brief and with a lot of value.
Are you able to debug by attaching to a remote server that is using code built by webpack or tsc? Unfortunately, my breakpoints are not working, I'm using vscode/chrome inspect for those

strxross
Автор

what is the font you are using in your screen :3

BD-hxlf
Автор

Awesome. Is there any example for nvim-jdtls ?

dimpub
Автор

This is so good. I was just today using gdb to debug a Rust program... I'd die to do it like this. Can you set up something like a "debug mode" so that the debug mappings only work there, and so they can be shorter?

LucyPero
Автор

Would be possible to debug react-native apps?

felipej.oribeiro
Автор

I cannot get it to run for the hell of it. I always get "invalid adapter".

vorrnth
Автор

Hey, love your video. Do you have any idea how to implement this for Python?

ahsanahmedbhaila