From e58d4abf11a70f78901929c48ae5d3f21d473b50 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 16 Feb 2015 00:39:05 -0800 Subject: [PATCH] Add bash_completion for `nvm exec` --- bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash_completion b/bash_completion index 92fe89b..0b744cd 100644 --- a/bash_completion +++ b/bash_completion @@ -73,7 +73,7 @@ __nvm () previous_word="${COMP_WORDS[COMP_CWORD-1]}" case "$previous_word" in - use|run|ls|list|uninstall) __nvm_installed_nodes ;; + use|run|exec|ls|list|uninstall) __nvm_installed_nodes ;; alias|unalias) __nvm_alias ;; *) __nvm_commands ;; esac