From e8fc14d27060fc8c913b7a13e820460a78c6f001 Mon Sep 17 00:00:00 2001 From: Moss Johnson Date: Wed, 27 Sep 2023 13:43:56 -0700 Subject: [PATCH 1/2] add align plugin --- channel.json | 3 +++ plugins/align.json | 16 ++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 plugins/align.json diff --git a/channel.json b/channel.json index 112427d..2ef4625 100644 --- a/channel.json +++ b/channel.json @@ -77,6 +77,9 @@ // detectindent plugin "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-detectindent.json", + // align plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/align.json", + // lsp plugin "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-plugin-lsp.json" ] diff --git a/plugins/align.json b/plugins/align.json new file mode 100644 index 0000000..9a84f0e --- /dev/null +++ b/plugins/align.json @@ -0,0 +1,16 @@ +[{ + "Name": "align", + "Description": "aligns multiple cursors", + "Tags": ["align"], + "Website": "https://github.com/mosskjohnson/align-plugin", + "License": "MIT", + "Versions": [ + { + "Version": "1.0.0", + "Url": "https://github.com/mosskjohnson/align-plugin/archive/refs/tags/v1.0.0.zip", + "Require": { + "micro": ">=2.0.0-1" + } + } + ] +}] From 09b807601c189b8ac8351a4c3ae0d1e3f8451714 Mon Sep 17 00:00:00 2001 From: Moss Johnson Date: Mon, 25 Mar 2024 23:03:44 -0700 Subject: [PATCH 2/2] added align plugin to README.md file --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 158fb1f..346e4eb 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: | +| `align` | Plugin to easily align multiple cursors | https://github.com/mosskjohnson/align-plugin | :heavy_check_mark: | ## Adding your own plugin