From 2d9317f9066f511f7d0baef59306c2db00c1e78b Mon Sep 17 00:00:00 2001 From: gunduzc Date: Tue, 7 Oct 2025 14:56:38 +0300 Subject: [PATCH] Add repeatmacro plugin --- channel.json | 13 ++++++++----- plugins/micro-repeatmacro.json | 15 +++++++++++++++ 2 files changed, 23 insertions(+), 5 deletions(-) create mode 100644 plugins/micro-repeatmacro.json diff --git a/channel.json b/channel.json index 6bd00cc..b272b35 100644 --- a/channel.json +++ b/channel.json @@ -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", @@ -89,4 +89,7 @@ // cheat plugin "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-cheat.json" + // repeatmacro plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-repeatmacro.json" + ] diff --git a/plugins/micro-repeatmacro.json b/plugins/micro-repeatmacro.json new file mode 100644 index 0000000..b3a34ab --- /dev/null +++ b/plugins/micro-repeatmacro.json @@ -0,0 +1,15 @@ +[{ + "Name": "repeatmacro", + "Description": "A plugin to repeat the last recorded macro multiple times.", + "Tags": ["macro", "repeat", "automation"], + "Website": "https://gitlab.com/gunduzc/micro-repeatmacro", + "Versions": [ + { + "Version": "1.0.0", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/micro-repeatmacro-1.0.0.zip", + "Require": { + "micro": ">=2.0.0-1" + } + } + ] +}]