diff --git a/README.md b/README.md index 3d8680a..478803a 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ This repository contains the 'channel.json' file which lists all official micro | `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: | +| `codestats` | Code::Stats for Micro Editor | https://github.com/redfire75369/code-stats-micro | :heavy_check_mark: | ## Adding your own plugin diff --git a/channel.json b/channel.json index 6bd00cc..6d349fa 100644 --- a/channel.json +++ b/channel.json @@ -87,6 +87,9 @@ "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" + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-cheat.json", + + // codestats plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/codestats.json" ] diff --git a/plugins/codestats.json b/plugins/codestats.json new file mode 100644 index 0000000..ed1939f --- /dev/null +++ b/plugins/codestats.json @@ -0,0 +1,44 @@ +[{ + "Name": "codestats", + "Description": "Code::Stats Plugin for Micro", + "Website": "https://github.com/redfire75369/code-stats-micro", + "Tags": ["codestats", "stats"], + "License": "MIT", + "Versions": [ + { + "Version": "1.0.0", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.0.zip", + "Require": { + "micro": ">=2.0.0" + } + }, + { + "Version": "1.0.1", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.1.zip", + "Require": { + "micro": ">=2.0.0" + } + }, + { + "Version": "1.0.2", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.0.2.zip", + "Require": { + "micro": ">=2.0.0" + } + }, + { + "Version": "1.1.0", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.1.0.zip", + "Require": { + "micro": ">=2.0.0" + } + }, + { + "Version": "1.1.1", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/codestats-1.1.1.zip", + "Require": { + "micro": ">=2.0.0" + } + } + ] +}]