From c78a8465a6b0ad882e153dda469e5e01549fc61a Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 23 Jul 2020 09:52:39 +0100 Subject: [PATCH] Remove the shorten function --- tag-zsh/zsh/configs/functions.zsh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tag-zsh/zsh/configs/functions.zsh b/tag-zsh/zsh/configs/functions.zsh index 1f81ffe..1a2141f 100644 --- a/tag-zsh/zsh/configs/functions.zsh +++ b/tag-zsh/zsh/configs/functions.zsh @@ -1,10 +1,3 @@ -shorten() { - pushd ~/Code/opdavi.es - git pull --rebase - npm run shorten $1 $2 - popd -} - function mkd() { mkdir -p "$@" && cd "$@" }