From 4f15bd15e5df830c27a35740f046ade81ba9efb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Wed, 24 Aug 2016 00:13:24 +0200 Subject: [PATCH] Properly fix npm completion source Problem introduced in 136a834. --- plugins/npm/npm.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/npm/npm.plugin.zsh b/plugins/npm/npm.plugin.zsh index 480e92a91..30b91ec9c 100644 --- a/plugins/npm/npm.plugin.zsh +++ b/plugins/npm/npm.plugin.zsh @@ -4,9 +4,9 @@ if [[ ! -f $__NPM_COMPLETION_FILE ]]; then npm completion >! $__NPM_COMPLETION_FILE || rm -f $__NPM_COMPLETION_FILE fi -} -source $__NPM_COMPLETION_FILE + source $__NPM_COMPLETION_FILE +} # Install dependencies globally alias npmg="npm i -g "