From 31d3c73c68b7b08e9c3d6e68f284ad7f70a7f4fc Mon Sep 17 00:00:00 2001 From: Wolf Vollprecht Date: Fri, 6 Sep 2024 23:41:44 +0200 Subject: [PATCH] use vim style autocompletion for now (#47) --- crates/shell/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/shell/src/main.rs b/crates/shell/src/main.rs index a6fff98..4674a7d 100644 --- a/crates/shell/src/main.rs +++ b/crates/shell/src/main.rs @@ -71,7 +71,7 @@ fn init_state() -> ShellState { async fn interactive() -> anyhow::Result<()> { let config = Config::builder() .history_ignore_space(true) - .completion_type(CompletionType::List) + .completion_type(CompletionType::Circular) .build(); let mut rl = Editor::with_config(config)?;