Skip to content

Commit

Permalink
feat: update demand and default mise run to filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 14, 2024
1 parent 2c47f72 commit 48c366d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/cli/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,7 @@ fn prompt_for_task() -> Result<Task> {
);
let mut s = Select::new("Tasks")
.description("Select a tasks to run")
.filtering(true)
.filterable(true);
for t in tasks.values().filter(|t| !t.hide) {
s = s.option(DemandOption::new(&t.name).description(&t.description));
Expand Down

0 comments on commit 48c366d

Please sign in to comment.