From fac2c06abed89bc2e249e5e2f13822c93e9879f1 Mon Sep 17 00:00:00 2001 From: gaenseklein Date: Mon, 27 Nov 2023 14:41:47 +0100 Subject: [PATCH 1/2] adding repfiles plugin --- channel.json | 5 ++++- plugins/repfiles.json | 16 ++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 plugins/repfiles.json diff --git a/channel.json b/channel.json index 112427d..f77a335 100644 --- a/channel.json +++ b/channel.json @@ -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", + + //repfiles plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/repfiles.json" ] diff --git a/plugins/repfiles.json b/plugins/repfiles.json new file mode 100644 index 0000000..def785f --- /dev/null +++ b/plugins/repfiles.json @@ -0,0 +1,16 @@ +[{ + "Name": "repfiles", + "Description": "a filemanager for your repository", + "Tags": ["filemanager", "git", "repository"], + "Website": "https://github.com/gaenseklein/repfiles", + "License": "GPL3", + "Versions": [ + { + "Version": "1.0.0", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/repfiles-1.0.0.zip", + "Require": { + "micro": ">=2.0.10" + } + } + ] +}] From 8297c46c67416d1c102a0e85c9838ee4884c4e68 Mon Sep 17 00:00:00 2001 From: gaenseklein Date: Sun, 24 Mar 2024 13:37:28 +0100 Subject: [PATCH 2/2] added table entry for repfiles --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 158fb1f..32329f6 100644 --- a/README.md +++ b/README.md @@ -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: | +| `repfiles` | A file manager for your git repository | https://github.com/gaenseklein/repfiles | :heavy_check_mark: | ## Adding your own plugin