Skip to content
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 @@ -35,6 +35,7 @@ This repository contains the 'channel.json' file which lists all official micro
| `lsp` | An basic LSP client implementation | https://github.com/AndCake/micro-plugin-lsp | :heavy_check_mark: |
| `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: |
| `unicode` | Unicode symbol input via backslash abbreviations (Lean4/LaTeX/HOL4) | https://github.com/lukaszcz/micro-unicode | :heavy_check_mark: |
| `cheat` | F1 cheatsheet for the language you're editing: Python, Go, Lua... | https://github.com/terokarvinen/micro-cheat | :heavy_check_mark: |

## Adding your own plugin
Expand Down
3 changes: 3 additions & 0 deletions channel.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@
// palettero plugin
"https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/palettero.json",

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

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

Expand Down
16 changes: 16 additions & 0 deletions plugins/micro-unicode.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[{
"Name": "unicode",
"Description": "Unicode symbol input via backslash abbreviations (Lean4/LaTeX/HOL4)",
"Website": "https://github.com/lukaszcz/micro-unicode",
"Tags": ["unicode", "input", "symbols", "latex", "lean4"],
"License": "MIT",
"Versions": [
{
"Version": "1.0.0",
"Url": "https://github.com/lukaszcz/micro-unicode/archive/v1.0.0.zip",
"Require": {
"micro": ">=2.0.0"
}
}
]
}]