-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f396223
commit d9c6241
Showing
4 changed files
with
596 additions
and
1 deletion.
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
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 | ||
Check warning on line 5 in examples/ide_completions.rs GitHub Actions / build-lint-test (ubuntu-latest, stable, sqlite)
Check warning on line 5 in examples/ide_completions.rs GitHub Actions / build-lint-test (ubuntu-latest, stable, external_printer)
Check warning on line 5 in examples/ide_completions.rs GitHub Actions / build-lint-test (ubuntu-latest, stable, basqlite)
Check warning on line 5 in examples/ide_completions.rs GitHub Actions / build-lint-test (ubuntu-latest, stable, bashisms)
|
||
|
||
use reedline::{ | ||
default_emacs_keybindings, IdeMenu, DefaultCompleter, DefaultPrompt, Emacs, 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
Oops, something went wrong.