Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ubaldot/experiments

Guess what?
https://github.com/ubaldot/experiments

Last synced: 24 days ago
JSON representation

Guess what?

Awesome Lists containing this project

README

        

# Termdebug9: how to test it

Verify that you have `gdb` installed. Then either you run the tests
automatically by sourcing `test/run_tests.sh` script or you can do the
following:

If you want to give it a shot manually, do the following:

1. Clone the repo
2. Run `:source termdebug9.vim`
3. Run `:Termdebug`

Please, report any error that you may see.

Then, if things went fine, build the source code example contained in the
`source` folder with `gcc`. Run again `:Termdebug /path/to/your/built/file`
and do ordinary debug activities (add breakpoints, step, continue, etc).

For more info `:h Termdebug`.

Default mapings

nnoremap B Break
nnoremap T Tbreak
nnoremap D Clear
nnoremap C Continue
nnoremap I Step
nnoremap O Next
nnoremap F Finish
nnoremap S Stop
nnoremap U Until
nnoremap K Evaluate
nnoremap R Run
nnoremap X TermDebugSendCommand('set confirm off')TermDebugSendCommand('exit')