From 671a78c23b1148ac75cca6c78d4da624eb7f314f Mon Sep 17 00:00:00 2001 From: gaenseklein Date: Sun, 7 Jul 2024 12:52:23 +0200 Subject: [PATCH 1/3] changed readme to include sniptab --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 158fb1f..d773773 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: | +| `sniptab` | insert snippets, html-emmet or jsdoc-emmet to your file | https://github.com/gaenseklein/sniptab | :heavy_check_mark: | ## Adding your own plugin From 3c50c7d4a0c515c2b5f237d06566ea8c7fb5ae85 Mon Sep 17 00:00:00 2001 From: gaenseklein Date: Sun, 7 Jul 2024 12:55:13 +0200 Subject: [PATCH 2/3] repo.json added --- plugins/repo.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 plugins/repo.json diff --git a/plugins/repo.json b/plugins/repo.json new file mode 100644 index 0000000..5564a09 --- /dev/null +++ b/plugins/repo.json @@ -0,0 +1,18 @@ +[ + { + "Name": "sniptab", + "Description": "a simple snippets-plugin to let you insert vim-style snippets and emmets on current location", + "Tags": ["snippet", "emmet", "insert", "jsdoc"], + "Website": "https://github.com/gaenseklein/sniptab", + "License": "GPL3", + "Versions": [ + { + "Version": "1.4.0", + "Url": "https://github.com/gaenseklein/sniptab/archive/refs/tags/v1.4.0.zip", + "Require": { + "micro": ">=2.0.8" + } + } + ] + } +] From 3bcff5fa367c0feab9f490dd3cc757af53d9caf1 Mon Sep 17 00:00:00 2001 From: gaenseklein Date: Sun, 7 Jul 2024 12:58:37 +0200 Subject: [PATCH 3/3] changed repo.json to reflect future download --- plugins/{repo.json => sniptab.json} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename plugins/{repo.json => sniptab.json} (78%) diff --git a/plugins/repo.json b/plugins/sniptab.json similarity index 78% rename from plugins/repo.json rename to plugins/sniptab.json index 5564a09..0c46f1a 100644 --- a/plugins/repo.json +++ b/plugins/sniptab.json @@ -8,7 +8,7 @@ "Versions": [ { "Version": "1.4.0", - "Url": "https://github.com/gaenseklein/sniptab/archive/refs/tags/v1.4.0.zip", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/sniptab-1.4.0.zip", "Require": { "micro": ">=2.0.8" }