Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add selto plugin #93

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 4 additions & 1 deletion channel.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"

]
16 changes: 16 additions & 0 deletions plugins/micro-selto.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
]
}]