-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ide style completions * descriptions * truncate suggestion & description * border width * clippy & typos * run cargo fmt * add with_description_offset to builder * fix empty description * minimize description padding * rework working details handling + fix CI * add tests + change split function * fix multiline prompt cursor pos
- Loading branch information
1 parent
2f3eb3e
commit 31eaeeb
Showing
10 changed files
with
1,569 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// Create a reedline object with tab completions support | ||
// cargo run --example completions | ||
// | ||
// "t" [Tab] will allow you to select the completions "test" and "this is the reedline crate" | ||
// [Enter] to select the chosen alternative | ||
|
||
use reedline::{ | ||
default_emacs_keybindings, DefaultCompleter, DefaultPrompt, Emacs, IdeMenu, KeyCode, | ||
KeyModifiers, Keybindings, Reedline, ReedlineEvent, ReedlineMenu, Signal, | ||
}; | ||
use std::io; | ||
|
||
fn add_menu_keybindings(keybindings: &mut Keybindings) { | ||
keybindings.add_binding( | ||
KeyModifiers::NONE, | ||
KeyCode::Tab, | ||
ReedlineEvent::UntilFound(vec![ | ||
ReedlineEvent::Menu("completion_menu".to_string()), | ||
ReedlineEvent::MenuNext, | ||
]), | ||
); | ||
} | ||
fn main() -> io::Result<()> { | ||
let commands = vec![ | ||
"test".into(), | ||
"hello world".into(), | ||
"hello world reedline".into(), | ||
"this is the reedline crate".into(), | ||
]; | ||
let completer = Box::new(DefaultCompleter::new_with_wordlen(commands, 2)); | ||
// Use the interactive menu to select options from the completer | ||
let completion_menu = Box::new(IdeMenu::default().with_name("completion_menu")); | ||
|
||
let mut keybindings = default_emacs_keybindings(); | ||
add_menu_keybindings(&mut keybindings); | ||
|
||
let edit_mode = Box::new(Emacs::new(keybindings)); | ||
|
||
let mut line_editor = Reedline::create() | ||
.with_completer(completer) | ||
.with_menu(ReedlineMenu::EngineCompleter(completion_menu)) | ||
.with_edit_mode(edit_mode); | ||
|
||
let prompt = DefaultPrompt::default(); | ||
|
||
loop { | ||
let sig = line_editor.read_line(&prompt)?; | ||
match sig { | ||
Signal::Success(buffer) => { | ||
println!("We processed: {buffer}"); | ||
} | ||
Signal::CtrlD | Signal::CtrlC => { | ||
println!("\nAborted!"); | ||
break Ok(()); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.