diff --git a/README.md b/README.md index 3d8680a..58e0045 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: | +| `selto` | Quickly select multiple lines | https://github.com/PawelMTRK/micro-selto-plugin | :heavy_check_mark: | ## Adding your own plugin diff --git a/channel.json b/channel.json index 6bd00cc..3a3925a 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", + + // selto plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-selto.json" ] diff --git a/plugins/micro-selto.json b/plugins/micro-selto.json new file mode 100644 index 0000000..b4baa91 --- /dev/null +++ b/plugins/micro-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/micro-selto-plugin", + "Licence": "MIT", + "Versions": [ + { + "Version": "1.0.0", + "Url": "https://github.com/PawelMTRK/micro-selto-plugin/archive/refs/tags/v1.0.0.zip", + "Require": { + "micro": ">=2.0.0" + } + } + ] +}] \ No newline at end of file