Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add delve plugin #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ This repository contains the 'channel.json' file which lists all official micro
| `quickfix` | Adds a functionality similar to VIM quickfix pane | https://github.com/serge-v/micro-quickfix | :heavy_check_mark: |
| `jump` | Jump to any function, class or heading with F4. Go, Markdown, Python, C and in 40 other languages | https://github.com/terokarvinen/micro-jump | :heavy_check_mark: |
| `detectindent` | Automatically detect indentation settings | https://github.com/dmaluka/micro-detectindent | :heavy_check_mark: |
| `delve` | Integrates golang delve debugger | https://github.com/serge-v/micro-delve | :heavy_check_mark: |


## Adding your own plugin
Expand Down
5 changes: 4 additions & 1 deletion channel.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,8 @@
"https://raw.githubusercontent.com/terokarvinen/micro-jump/main/repo.json",

// detectindent plugin
"https://raw.githubusercontent.com/dmaluka/micro-detectindent/master/repo.json"
"https://raw.githubusercontent.com/dmaluka/micro-detectindent/master/repo.json",

// delve plugin
"https://raw.githubusercontent.com/serge-v/micro-delve/main/repo.json"
]