From 3580bffc6e66092ee83a9bd8184677f108b23efa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Spiekerk=C3=B6tter?= Date: Fri, 7 Oct 2016 19:19:00 +0200 Subject: [PATCH] Implement performance improvements As @mcornella stated in #5500 I replaced the parentheses with curly braces. --- plugins/jump/jump.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/jump/jump.plugin.zsh b/plugins/jump/jump.plugin.zsh index 3dfa8d8d3..86d9553a2 100644 --- a/plugins/jump/jump.plugin.zsh +++ b/plugins/jump/jump.plugin.zsh @@ -9,7 +9,7 @@ export MARKPATH=$HOME/.marks jump() { - cd -P "$MARKPATH/$1" 2>/dev/null || (echo "No such mark: $1"; return 1) + cd -P "$MARKPATH/$1" 2>/dev/null || {echo "No such mark: $1"; return 1} } mark() {