Is there a plugin for Vim that will help me debug like Visual Studio?

The reason I'm asking about this is because I am coding in C ++, in putty / ssh, and I like the fact that I can write code almost everywhere without setting anything.

So, I would like to have something that could help me debug (viewing the LIVE value of a variable, breakpoints, etc.)

If you think that in this world there is no such thing, is there any good technique that I could use for debugging on the command line?

thank

+3
source share
4 answers

I used gdb to debug command line in the past with success:

http://www.gnu.org/software/gdb/

:

http://www.cs.cmu.edu/~gilpin/tutorial/

+8

vimgdb , . . :

  • Hightlight
  • ,
  • ,
  • gdb
  • , , , ..

vim .

checkinstall rpm , .

, , .

+3

gdb? , vim.

+2

script, : http://www.vim.org/scripts/script.php?script_id=1954

In my humble opinion, Vim is not intended for such actions, and this is a bad idea.

+1
source

Source: https://habr.com/ru/post/1775863/


All Articles