Skip to content

Commit 8905be5

Browse files
committed
use not-in operator
1 parent ea51061 commit 8905be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom-completions/scoop/scoop-completions.nu

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def scoopAvailableApps [] {
4848
let all = (scoopAllApps)
4949
let installed = (scoopInstalledApps)
5050

51-
$all | where not ($it in $installed)
51+
$all | where $it not-in $installed
5252
}
5353

5454
# list of all config options

0 commit comments

Comments
 (0)