Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ubaldot/experiments
Guess what?
https://github.com/ubaldot/experiments
Last synced: 24 days ago
JSON representation
Guess what?
- Host: GitHub
- URL: https://github.com/ubaldot/experiments
- Owner: ubaldot
- Created: 2024-05-11T10:36:24.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-12T14:23:07.000Z (5 months ago)
- Last Synced: 2024-06-13T03:44:22.556Z (5 months ago)
- Language: Vim Script
- Size: 363 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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')