diff --git a/crates/shell/src/main.rs b/crates/shell/src/main.rs index b6c3be3..9b72392 100644 --- a/crates/shell/src/main.rs +++ b/crates/shell/src/main.rs @@ -32,7 +32,7 @@ fn init_state() -> ShellState { async fn interactive() -> anyhow::Result<()> { let config = Config::builder() .history_ignore_space(true) - .completion_type(CompletionType::Circular) + .completion_type(CompletionType::List) .build(); let mut rl = Editor::with_config(config)?;