I just switched from windows 10 to arch linux I want to use (Neo)Vim as my code editor I've sitted up autocomplition and Fuzzy finder But I have no idea how to debug in (Neo)Vim
Any helps!
I just switched from windows 10 to arch linux I want to use (Neo)Vim as my code editor I've sitted up autocomplition and Fuzzy finder But I have no idea how to debug in (Neo)Vim
Any helps!
For neovim there is nvim-dap which is an implementation of the debugging interface called DAP which vscode uses as well. For c/c++ check this page in nvim-dap's wiki.
Until this moment I have just used Neovim/Vim to change some small things in a code on terminal, but I think that installing the Kite plugin can help a little bit while you are coding and also, I found this answer, that has some considerations and possibilities of debuggers for Vim.
If you use gdb, you can use the in-built debugger plugin TermDebug
. This works with both Vim and Neovim and is quite nice for C and C++ debugging.