Skip to content
Draft
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: |
| `ltm` | Lua text transforms over multi-cursor selections (eval, base conversions, sequences) | https://github.com/Tubbles/ltm | :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",

// ltm plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/ltm.json"

]
16 changes: 16 additions & 0 deletions plugins/ltm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[{
"Name": "ltm",
"Description": "Lua text transforms over multi-cursor selections",
"Website": "https://github.com/Tubbles/ltm",
"Tags": ["utility", "text", "multi-cursor"],
"License": "AGPL-3.0-only",
"Versions": [
{
"Version": "0.1.0",
"Url": "https://github.com/Tubbles/ltm/archive/refs/tags/v0.1.0.zip",
"Require": {
"micro": ">=2.0.0"
}
}
]
}]