Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'contrib/completion/hx.nu')
| -rw-r--r-- | contrib/completion/hx.nu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/hx.nu b/contrib/completion/hx.nu index 816b403a..e390cdad 100644 --- a/contrib/completion/hx.nu +++ b/contrib/completion/hx.nu @@ -5,8 +5,8 @@ # The help message won't be overridden though, so it will still be present here def health_categories [] { - let languages = ^hx --health all-languages | detect columns | get Language | where { $in != null } - let completions = [ "all", "clipboard", "languages", "all-languages" ] | append $languages + let languages = ^hx --health languages | detect columns | get Language | filter { $in != null } + let completions = [ "all", "clipboard", "languages" ] | append $languages return $completions } |