Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebucaran committed Aug 2, 2020
1 parent 2db1b65 commit 825b97d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion completions/nvm.fish
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
complete -xc nvm -n __fish_use_subcommand -a ls -d "List available versions matching <regex>"
complete -xc nvm -n __fish_use_subcommand -a use -d "Download <version> and modify PATH to use it"
complete -xc nvm -n __fish_use_subcommand -a use -d "Download <version> and modify PATH so it's available"
complete -xc nvm -n __fish_use_subcommand -a --help -d "Show usage help"
complete -xc nvm -n __fish_use_subcommand -a --version -d "Show the current version of nvm"

Expand Down
6 changes: 3 additions & 3 deletions functions/nvm.fish
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set -g nvm_version 1.0.2
set -g nvm_version 1.1.0

function nvm -a cmd -d "Node.js version manager"
set -q XDG_CONFIG_HOME; or set XDG_CONFIG_HOME ~/.config
Expand Down Expand Up @@ -52,12 +52,12 @@ function _nvm_help
echo " nvm use <version> Download <version> and modify PATH to use it"
echo " nvm Use version in .nvmrc (or stdin if not a tty)"
echo "examples:"
echo " nvm use 12"
echo " nvm use 14"
echo " nvm use lts"
echo " nvm use latest"
echo " nvm use dubnium"
echo " nvm ls '^1|9\$'"
echo " nvm ls 10"
echo " nvm ls 12"
echo " nvm <file"
end

Expand Down

0 comments on commit 825b97d

Please sign in to comment.