From 652010812d8faf6838df3074ce57b33e3eed8abe Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Tue, 22 Dec 2020 21:05:02 +0900 Subject: [PATCH] 2.0.1 --- completions/nvm.fish | 4 ++-- functions/nvm.fish | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/completions/nvm.fish b/completions/nvm.fish index c788ae2..51c2eef 100644 --- a/completions/nvm.fish +++ b/completions/nvm.fish @@ -1,7 +1,7 @@ complete -c nvm --exclusive --long version -d "Print version" complete -c nvm --exclusive --long help -d "Print this help message" -complete -c nvm --exclusive --condition "__fish_use_subcommand" -a install -d "Download and activate the specified Node version using nearest .nvmrc file if none is given" +complete -c nvm --exclusive --condition "__fish_use_subcommand" -a install -d "Download and activate the specified Node version" complete -c nvm --exclusive --condition "__fish_use_subcommand" -a use -d "Activate a version in the current shell" complete -c nvm --exclusive --condition "__fish_use_subcommand" -a list -d "List installed versions" complete -c nvm --exclusive --condition "__fish_use_subcommand" -a list-remote -d "List versions available to install matching optional regex" @@ -16,4 +16,4 @@ complete -c nvm --exclusive --condition "__fish_seen_subcommand_from uninstall" )" complete -c nvm --exclusive --condition "__fish_seen_subcommand_from use uninstall" -a "( set --query nvm_default_version && echo default -)" \ No newline at end of file +)" diff --git a/functions/nvm.fish b/functions/nvm.fish index a5b95b9..e939099 100644 --- a/functions/nvm.fish +++ b/functions/nvm.fish @@ -11,7 +11,7 @@ function nvm -a cmd v -d "Node version manager" switch "$cmd" case -v --version - echo "nvm, version 2.0.0" + echo "nvm, version 2.0.1" case "" -h --help echo "Usage: nvm install Download and activate the specified Node version" echo " nvm install Install version from nearest .nvmrc file"