6 ms·
I've been using Vim daily for 13 years and switched to NeoVim about a year of two ago. For me the main advantages over Vim are just the Lua scripting instead of
by Agentlien 6mo ago
I've been using Vim daily for 13 years and switched to NeoVim about a year of two ago. For me the main advantages over Vim are just the Lua scripting instead of Vimscript, its support for language servers, and better handling of terminals windows running inside Vim.
However, I do still run visual studio in parallel for debugging. It's basically essential when dealing with console game development.
- himata4113 6mo agoI just let AI handle any and all debugging at this point, haven't had an issue where AI couldn't find out what the problem was, finding a solution on the other hand is a hit or miss still.
- beAbU 6mo agoCan AI pause execution and step through the code line by line? Because that's what I think your parent comment is referring to.
- goosejuice 6mo agoAI can use gdb.
- himata4113 6mo agoyes. better than me actually.
- liancheng 6mo agoI found DAP neat enough for interactive debugging (when logging is not enough). But I only used DAP under Neovim to debug Python.