From d160647359eaf7a92a4cdddca6c142ca1f7bb55b Mon Sep 17 00:00:00 2001 From: e2dk4r <43293320+e2dk4r@users.noreply.github.com> Date: Wed, 7 Sep 2022 17:12:45 +0000 Subject: [PATCH] custom completions: scoop: fix list sub command (#291) `scoop list` can be call without any parameters. --- custom-completions/scoop/scoop-completions.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom-completions/scoop/scoop-completions.nu b/custom-completions/scoop/scoop-completions.nu index 095d829..5737ce0 100644 --- a/custom-completions/scoop/scoop-completions.nu +++ b/custom-completions/scoop/scoop-completions.nu @@ -114,7 +114,7 @@ export extern "scoop" [ # Lists all installed apps, or the apps matching the supplied query. export extern "scoop list" [ - query: string@scoopInstalledApps # string that will be matched + query?: string@scoopInstalledApps # string that will be matched --help(-h) # Show help for this command. ]