Skip to content

Commit d6c4841

Browse files
authored
Use CompletionType::List (#163)
This is how Bash behaves, it is a lot more natural.
1 parent 18c2d80 commit d6c4841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/shell/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fn init_state() -> ShellState {
3232
async fn interactive() -> anyhow::Result<()> {
3333
let config = Config::builder()
3434
.history_ignore_space(true)
35-
.completion_type(CompletionType::Circular)
35+
.completion_type(CompletionType::List)
3636
.build();
3737

3838
let mut rl = Editor::with_config(config)?;

0 commit comments

Comments
 (0)