Skip to content

Commit

Permalink
use vim style autocompletion for now (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Sep 6, 2024
1 parent f25ea7d commit 31d3c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/shell/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?;
Expand Down

0 comments on commit 31d3c73

Please sign in to comment.