5 releases (3 breaking)
new 0.4.1 | Oct 30, 2024 |
---|---|
0.4.0 | Oct 26, 2024 |
0.3.0 | Oct 26, 2024 |
0.2.0 | Dec 29, 2023 |
0.1.0 | Dec 21, 2023 |
#403 in Text editors
444 downloads per month
Used in 2 crates
770KB
1.5K
SLoC
LineEditor
A new cross platform Line editor implementation inspired by reedline, rustyline and other cool line editors, designed with the goal to provides the core components that allows you to build your custom line editor with as mush as customization options.
[!IMPORTANT] LineEditor API is still experimental and may be changed from version to version until finishing the design and implementations of the basics features
Basic example
let prompt = StringPrompt::new("prompt> ".to_string());
let line_editor = LineEditor::new(Box::new(prompt));
match line_editor.read_line() {
Ok(LineEditorResult::Success(buffer)) => {
}
_ => {}
}
Customization examples
- Text Prompt
- Custom Prompt
- Cursor style
- Input Filter
- Key bindings
- DropDown AutoComplete
- Keywords Highlighter
- Matching Brackets Highlighter
- Hex Color Highlighter
- Keywords Hinter
- Auto Pair complete
- Visual Selection
- Auto Surround Selection
License
MIT License
Copyright (c) 2023 Amr Hesham
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Dependencies
~2–10MB
~126K SLoC