This repository is a starting point for building plugins 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 plugin instead of setting up the environment.
git clone https://github.com/Xed-Editor/pluginTemplate
cd pluginTemplateBefore building, update the following in manifest.json:
name– your plugin’s nameversion– version of your pluginauthors– Developers of the plugin
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 plugin will not load.
To build the plugin in debug mode, run:
sh compileDebug.sh(You can create your own release script later if needed.)
After a successful build, your plugin package will be created here:
output/YourPluginName.zip
This ZIP file is what you load into Xed-Editor as a plugin.