Release v1.0.11
Edit Sharp 1.0.11
Automated release built from commit 89be5e2
π¦ Download Options
We provide two editions of Edit Sharp, each available for three platforms (Linux, macOS, Windows):
πͺΆ Trimmed AOT Edition (Recommended for most users)
Ultra-lightweight, blazing fast startup, no plugin support
Features:
- β Native AOT compilation - instant startup
- β Smallest file size (~5-10MB)
- β No runtime dependencies
- β All core editing features
- β No plugin support
- β No Command Palette
Downloads:
- Linux:
edit-sharp-linux-x64-trimmed-aot-v1.0.11.tar.gz - macOS:
edit-sharp-osx-x64-trimmed-aot-v1.0.11.tar.gz - Windows:
edit-sharp-win-x64-trimmed-aot-v1.0.11.zip
π Full Edition (For power users & plugin developers)
Feature-complete with Lua & .NET plugin support
Features:
- β Full Lua plugin support
- β .NET plugin support
- β Command Palette (Ctrl+Shift+P)
- β Extensible with custom commands
- β All core editing features
β οΈ Larger file size (~20-30MB)β οΈ Slightly slower startup
Downloads:
- Linux:
edit-sharp-linux-x64-full-v1.0.11.tar.gz - macOS:
edit-sharp-osx-x64-full-v1.0.11.tar.gz - Windows:
edit-sharp-win-x64-full-v1.0.11.zip
β‘ Quick Comparison
| Feature | Trimmed AOT | Full Edition |
|---|---|---|
| Startup Speed | β‘ Instant | π Fast |
| Plugins (Lua) | β | β |
| Plugins (.NET) | β | β |
| Command Palette | β | β |
| Core Editing | β | β |
| AOT Compiled | β | β |
π€ Which version should I choose?
Choose Trimmed AOT if:
- β You want the fastest, lightest editor possible
- β You don't need plugins or extensibility
- β You value instant startup and minimal resource usage
- β You just want a solid, simple text editor
Choose Full Edition if:
- β You want to use or develop plugins
- β You need the Command Palette for quick actions
- β You want text transformation, regex, and advanced features
- β File size and startup time aren't critical
π Installation
Linux/macOS:
# Extract (choose your edition and platform)
tar -xzf edit-sharp-*-v1.0.11.tar.gz
chmod +x edit-sharp
./edit-sharpWindows:
# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.11.zip
edit-sharp.exeπ Plugin Development (Full Edition Only)
To add Lua plugins, create a plugins/ folder next to the executable and add .lua files.
Example plugin:
editor.registerCommand(
"example.hello",
"Say Hello",
"Examples",
function()
editor.showMessage("Hello", "Hello from plugin!")
end
)Press Ctrl+Shift+P and type "hello" to run the command!
Full plugin API documentation: [Coming Soon]