From e3450710fa3a0d43b5617d0fa31e736f97e6112e Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Mon, 17 Apr 2017 17:33:10 -0700 Subject: [PATCH] Fix some more occurrances --- goto.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/goto.plugin.zsh b/goto.plugin.zsh index 4d1b67f..b155065 100644 --- a/goto.plugin.zsh +++ b/goto.plugin.zsh @@ -33,9 +33,9 @@ function goto { echo " jumps to a record set by label" elif [[ "$1" == "ls" ]] then - awk "{ print \$1 }" `_gotofile` | column -t + _awk "{ print \$1 }" `_gotofile` | column -t else - cd $(awk "/^$1\s/ {print \$2;exit;}" `_gotofile`) + cd $(_awk "/^$1\s/ {print \$2;exit;}" `_gotofile`) fi }