From e4367e8262ff173ee02274c19b8ab30cb36f9c05 Mon Sep 17 00:00:00 2001 From: PawelMTRK Date: Sun, 1 Oct 2023 12:30:28 +0200 Subject: [PATCH 1/4] Add selto plugin --- channel.json | 3 +++ plugins/selto.json | 16 ++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 plugins/selto.json diff --git a/channel.json b/channel.json index 112427d..c63c796 100644 --- a/channel.json +++ b/channel.json @@ -79,4 +79,7 @@ // lsp plugin "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-plugin-lsp.json" + + // selto plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/selto.json" ] diff --git a/plugins/selto.json b/plugins/selto.json new file mode 100644 index 0000000..28e75de --- /dev/null +++ b/plugins/selto.json @@ -0,0 +1,16 @@ +[{ + "Name": "selto", + "Description": "Simple plugin allowing to quickly select lines", + "Tags": ["selection", "select", "lines", "line"], + "Website": "https://github.com/PawelMTRK/selto-plugin", + "Licence": "MIT", + "Versions": [ + { + "Version": "1.0.0", + "Url": "https://github.com/PawelMTRK/selto-plugin/archive/refs/tags/v1.0.0.zip", + "Require": { + "micro": ">=2.0.0" + } + } + ] +}] \ No newline at end of file From e36a1b335e4394302bf144a80667321e72a3234c Mon Sep 17 00:00:00 2001 From: PawelMTRK Date: Sun, 1 Oct 2023 13:07:22 +0200 Subject: [PATCH 2/4] Add `micro-` prefix --- channel.json | 2 +- plugins/{selto.json => micro-selto.json} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename plugins/{selto.json => micro-selto.json} (63%) diff --git a/channel.json b/channel.json index c63c796..370e876 100644 --- a/channel.json +++ b/channel.json @@ -81,5 +81,5 @@ "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-plugin-lsp.json" // selto plugin - "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/selto.json" + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-selto.json" ] diff --git a/plugins/selto.json b/plugins/micro-selto.json similarity index 63% rename from plugins/selto.json rename to plugins/micro-selto.json index 28e75de..b4baa91 100644 --- a/plugins/selto.json +++ b/plugins/micro-selto.json @@ -2,12 +2,12 @@ "Name": "selto", "Description": "Simple plugin allowing to quickly select lines", "Tags": ["selection", "select", "lines", "line"], - "Website": "https://github.com/PawelMTRK/selto-plugin", + "Website": "https://github.com/PawelMTRK/micro-selto-plugin", "Licence": "MIT", "Versions": [ { "Version": "1.0.0", - "Url": "https://github.com/PawelMTRK/selto-plugin/archive/refs/tags/v1.0.0.zip", + "Url": "https://github.com/PawelMTRK/micro-selto-plugin/archive/refs/tags/v1.0.0.zip", "Require": { "micro": ">=2.0.0" } From c4ce9687f592dc05d2084a6a491e4fca2d73741d Mon Sep 17 00:00:00 2001 From: PawelMTRK Date: Fri, 29 Mar 2024 17:01:37 +0100 Subject: [PATCH 3/4] Add selto plugin to README Plugins table --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 158fb1f..7d2d51a 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: | +| `selto` | Quickly select multiple lines | https://github.com/PawelMTRK/micro-selto-plugin | :heavy_check_mark: | ## Adding your own plugin From 4437381280206b4815565047ff64cd5bb60da41d Mon Sep 17 00:00:00 2001 From: PawelMTRK Date: Fri, 29 Mar 2024 17:06:44 +0100 Subject: [PATCH 4/4] Resolved conflicts --- README.md | 3 +++ channel.json | 12 +++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7d2d51a..f1cbb3f 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,9 @@ 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: | +| `run` | F5 to save and run, F12 to 'make', F9 to 'make' in background. Go, Python, Lua and executable file (#!) supported. Can 'make' whole project even from subdir. | https://github.com/terokarvinen/micro-run | :heavy_check_mark: | +| `palettero` | Command palette - Ctrl-P to fuzzy search & run commands, textfilters and descriptions. Use Python oneliners and grep to edit text. | https://github.com/terokarvinen/palettero | :heavy_check_mark: | +| `cheat` | F1 cheatsheet for the language you're editing: Python, Go, Lua... | https://github.com/terokarvinen/micro-cheat | :heavy_check_mark: | | `selto` | Quickly select multiple lines | https://github.com/PawelMTRK/micro-selto-plugin | :heavy_check_mark: | diff --git a/channel.json b/channel.json index 370e876..3a3925a 100644 --- a/channel.json +++ b/channel.json @@ -78,8 +78,18 @@ "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", + // run plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-run.json", + + // palettero plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/palettero.json", + + // cheat plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-cheat.json", + // selto plugin "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-selto.json" + ]