This repository is a starting point for building extensions for Xed-Editor (Karbon). It includes a ready-to-use template, build scripts, and a simple folder structure so you can focus on writing your extension instead of setting up the environment.
git clone https://github.com/Xed-Editor/Extension-Template
cd Extension-TemplateBefore building, update the following in manifest.json:
name– your extension’s nameversion– version of your extensionauthors– Developers of the extension
Warning
If you rename the main class or move it to another package/folder, you must update the mainClass field in manifest.json, or the extension will not load.
To build the extension in debug mode, run:
./compileDebug(You can create your own release script later if needed.)
After a successful build, your extension package will be created here:
output/YourExtensionName.zip
This ZIP file is what you load into Xed-Editor as a extension.
For more detailed information about creating and managing extensions for Xed-Editor, see the official documentation:
This includes guides, API references, examples, and best practices for developing your extensions.