From ff4bbeeccea0223149fa692791274d68c0141b33 Mon Sep 17 00:00:00 2001 From: hophacker Date: Tue, 12 Mar 2019 16:30:22 +0800 Subject: [PATCH] added shortcut for helm --tls --- zsh/functions.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/functions.zsh b/zsh/functions.zsh index 64bac2c..017ad26 100644 --- a/zsh/functions.zsh +++ b/zsh/functions.zsh @@ -149,3 +149,7 @@ function gitcopy() { project_name=`echo $prefix | sed -E 's/.*\/(.*)/\1/'` git log $commit --pretty="* [$project_name]($prefix/commit/%H) %an: **%s**" | head -n $n | tee >(pbcopy) } + +function h() { + helm $* --tls +}