From a10f29c4a0bfb369a94211641def0ea1cd03948e Mon Sep 17 00:00:00 2001 From: David Kramer Date: Sun, 22 Apr 2018 12:58:43 -0600 Subject: [PATCH] Fix repeated omz_history event not found error message --- lib/history.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/history.zsh b/lib/history.zsh index 7d4e59d00..1324863c4 100644 --- a/lib/history.zsh +++ b/lib/history.zsh @@ -14,7 +14,7 @@ function omz_history { else # otherwise, call `fc -l 1` to show all available # history (and pass additional parameters) - builtin fc "$@" -l 1 + builtin fc -l 1 "$@" fi }