https://github.com/skanehira/denops-delve.vim
Vim/Neovim plugin of delve that can debug Go programs
https://github.com/skanehira/denops-delve.vim
neovim vim vim-denops
Last synced: 10 months ago
JSON representation
Vim/Neovim plugin of delve that can debug Go programs
- Host: GitHub
- URL: https://github.com/skanehira/denops-delve.vim
- Owner: skanehira
- License: mit
- Created: 2021-10-30T14:01:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-14T13:30:56.000Z (over 4 years ago)
- Last Synced: 2025-06-03T23:21:59.076Z (about 1 year ago)
- Topics: neovim, vim, vim-denops
- Language: TypeScript
- Homepage:
- Size: 38.1 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# denops-delve.vim - UNDER DEVELOPMENT
Vim/Neovim plugin for [delve](https://github.com/go-delve/delve)

## Usage
| Command | Description |
|-----------------------|---------------------------------------------|
| `:DlvStart` | Start delve server |
| `:DlvBreakpoint` | Sets a breakpoint to current line |
| `:DlvBreakpointClear` | Clear a breakpoint at current line |
| `:DlvStop` | Stop delve |
| `:DlvContinue` | Run until breakpoint or program termination |
| `:DlvNext` | Step over to next source line |
| `:DlvStep` | Single step through program |
| `:DlvStepOut` | Step out of the current function |
| `:DlvPrint` | Evaluate an expression |
| `:DlvOpenLog` | Watch delve logging |
## Author
skanehira