Ace Editor

UI Extension

Ace is a high-performance code editor for the web with syntax highlighting for over 110 languages, themes, and worker-based validation.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #109
KEY FEATURES
110+ language modes
Syntax validation
Code folding
Search and replace
Multiple cursors
Themes
Vim/Emacs keybindings
Usage Example

Here's how you'll use Ace Editor with Oorian once the extension is available:

Java
// Create and configure Ace Editor component
AceEditor component = new AceEditor();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, AceEditorEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.