1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#81 in #text-processing
Used in 6 crates
(5 directly)
3MB
23K
SLoC
Aloe Editor
Aloe Editor is a sophisticated text editor component tailored for handling source code. It is built with a strong emphasis on syntax highlighting and efficient editing of extensive files. It supports various programming languages, including Lua, C++, and XML, by providing tokenization and customizable color schemes for syntax highlighting.
Features
- Syntax Highlighting: Supports Lua, C++, and XML with customizable color schemes.
- Text Manipulation: Provides capabilities such as cutting, copying, pasting, and undo-redo actions.
- Code Navigation: Efficiently manage large text portions with smooth scrolling and line/column adjustments.
- Extendable Interface: Implement traits to extend functionality like handling special key events and managing clipboard operations.
Usage
the Aloe Editor crate requires the Rust 2024 edition. To use this crate in your project, add the following to your Cargo.toml
:
[dependencies]
aloe-editor = "0.1.0"
Example
Here is a basic example to create a simple code editor component:
use aloe_editor::{CodeEditorComponent, CodeDocument};
fn main() {
let mut document = CodeDocument::default();
let mut editor = CodeEditorComponent::new(&mut document, None);
editor.set_font(Font::new(12.0));
editor.load_content(&"fn main() { println!(\"Hello, world!\"); }".to_string());
// Further configuration and usage...
}
License
Aloe Editor is licensed under GPL-3.0.
Repository
The source code is available on GitHub: https://github.com/klebs6/aloe-rs
Note: This README.md file was generated by an AI model and may not be 100% accurate however it should be pretty good.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~28–41MB
~615K SLoC