Skip to content
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 @@ -33,6 +33,7 @@ This repository contains the 'channel.json' file which lists all official micro
| `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: |
| `lsp` | An basic LSP client implementation | https://github.com/AndCake/micro-plugin-lsp | :heavy_check_mark: |
| `grepsearch` | Enables to search recursively with grep inside cwd | https://github.com/gaenseklein/grepsearch | :heavy_check_mark: |


## Adding your own plugin
Expand Down
15 changes: 9 additions & 6 deletions channel.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,25 +40,25 @@

// JoinLines plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/join-lines-plugin.json",

// Quoter plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-quoter.json",

// Bounce plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-bounce.json",

// zigfmt plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-zigfmt.json",

// Aspell plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-aspell-plugin.json",

// jlabbrev plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/jlabbrev.json",

// wakatime plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-wakatime.json",

// nord colorschemes
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-nord-tc-colors.json",

Expand All @@ -78,5 +78,8 @@
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-detectindent.json",

// lsp plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-plugin-lsp.json"
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-plugin-lsp.json",

//grepsearch plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-grepsearch.json"
]
18 changes: 18 additions & 0 deletions plugins/micro-grepsearch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
{
"Name": "grepsearch",
"Description": "using grep to recursively search in files",
"Tags": ["search"],
"Website": "https://github.com/gaenseklein/grepsearch",
"License": "GPL3",
"Versions": [
{
"Version": "1.0.0",
"Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/micro-grepsearch-1.0.0.zip",
"Require": {
"micro": ">=1.3.2"
}
}
]
}
]