lumide_api 0.2.0+1
lumide_api: ^0.2.0+1 copied to clipboard
Host API for Lumide IDE plugins. Provides abstractions for plugin development.
lumide_api #
The official SDK for building plugins for Lumide IDE.
lumide_api provides a set of high-level abstractions to interact with the Lumide IDE, allowing you to extend the editor, manage the file system, execute shell commands, and more.
Features #
- Plugin Lifecycle: Seamlessly handle plugin activation and deactivation.
- Commands API: Register commands for the Command Palette with optional keybindings.
- Status Bar API: Create and manage custom status bar items.
- Editor API: Access active editor, selections, and handle real-time events.
- Workspace API: Access configurations and listen to file events (open, change, save, close).
- FileSystem API: Secure file operations within the workspace.
- Window API: UI interactions (messages, quick picks, input boxes).
- Shell & HTTP APIs: Controlled execution of shell commands and standardized network requests.
Getting Started #
Add lumide_api to your pubspec.yaml:
dependencies:
lumide_api: ^0.2.0+1
Basic Usage #
Extend the LumidePlugin class and implement the onActivate method:
import 'package:lumide_api/lumide_api.dart';
void main() => MyPlugin().run();
class MyPlugin extends LumidePlugin {
@override
Future<void> onActivate(LumideContext context) async {
// Show a message
await context.window.showMessage('Plugin activated!');
// Register a command
await context.commands.registerCommand(
id: 'my_plugin.hello',
title: 'Hello World',
callback: () async => log('Command executed!'),
);
// Create a status bar item
await context.statusBar.createItem(
id: 'status',
text: 'Ready',
alignment: 'right',
);
}
}
Note: Always use the
log()method for debugging.stdoutis reserved for JSON-RPC communication between the IDE and your plugin.
Documentation & Examples #
For a comprehensive walkthrough of what you can build, check out the example directory which exercises all 18 available APIs.
For more information about the Lumide ecosystem, visit lumide.dev.
Built with ❤️ by SoFluffy.
License #
This project is licensed under the MIT License - see the LICENSE file for details.