Skip to content

Releases: Neo-vortex/edit-sharp

Release v1.0.17

28 Nov 19:27
2439c6b

Choose a tag to compare

Edit Sharp 1.0.17

Automated release built from commit 2439c6b

📦 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.17.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.17.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.17.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.17.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.17.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.17.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.17.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.17.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]

Release v1.0.16

28 Nov 18:42
03ed411

Choose a tag to compare

Edit Sharp 1.0.16

Automated release built from commit 03ed411

📦 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.16.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.16.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.16.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.16.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.16.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.16.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.16.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.16.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]

Release v1.0.15

28 Nov 18:20
ff0fb46

Choose a tag to compare

Edit Sharp 1.0.15

Automated release built from commit ff0fb46

📦 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.15.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.15.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.15.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.15.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.15.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.15.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.15.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.15.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]

Release v1.0.14

28 Nov 18:18
ff0fb46

Choose a tag to compare

Edit Sharp 1.0.14

Automated release built from commit 442c524

📦 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.14.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.14.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.14.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.14.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.14.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.14.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.14.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.14.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]

Release v1.0.13

28 Nov 17:57

Choose a tag to compare

Edit Sharp 1.0.13

Automated release built from commit fb739c4

📦 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.13.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.13.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.13.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.13.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.13.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.13.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.13.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.13.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]

Release v1.0.12

28 Nov 17:54
f2afbd3

Choose a tag to compare

Edit Sharp 1.0.12

Automated release built from commit f2afbd3

📦 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.12.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.12.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.12.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.12.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.12.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.12.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.12.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.12.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]

Release v1.0.11

28 Nov 17:52

Choose a tag to compare

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-sharp

Windows:

# 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]

Release v1.0.10

28 Nov 17:14
074d490

Choose a tag to compare

Edit Sharp 1.0.10

Automated release built from commit 074d490

📦 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.10.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.10.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.10.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.10.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.10.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.10.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.10.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.10.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]

Release v1.0.9

28 Nov 17:13
074d490

Choose a tag to compare

Edit Sharp 1.0.9

Automated release built from commit f7bcf12

📦 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.9.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.9.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.9.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.9.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.9.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.9.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.9.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.9.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]

Release v1.0.8

27 Nov 08:25
12f5b17

Choose a tag to compare

Edit Sharp 1.0.8

Automated release built from commit 12f5b17

📦 Download Options

🪶 Trimmed Builds (Lightweight - Recommended for basic editor use)

Smaller file size, faster startup, but may cause plugin crashes

  • Linux: edit-sharp-linux-x64-trimmed-v1.0.8.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-v1.0.8.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-v1.0.8.zip

🔌 Full Builds (Plugin Compatible - Recommended for plugin users)

Larger file size but better plugin compatibility

  • Linux: edit-sharp-linux-x64-full-v1.0.8.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.8.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.8.zip

⚠️ Which version should I choose?

Choose Trimmed if:

  • ✅ You just want a lightweight text editor
  • ✅ You don't plan to use plugins
  • ✅ You want faster startup and smaller download size

Choose Full if:

  • ✅ You plan to use or develop plugins
  • ✅ You need maximum compatibility
  • ✅ File size is not a concern

📖 Installation

Linux/macOS:

# Extract (replace with your chosen file)
tar -xzf edit-sharp-*-v1.0.8.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (replace with your chosen file)
unzip edit-sharp-win-x64-*-v1.0.8.zip
edit-sharp.exe