Fix repeated omz_history event not found error message

This commit is contained in:
David Kramer 2018-04-22 12:58:43 -06:00
commit a10f29c4a0

View file

@ -14,7 +14,7 @@ function omz_history {
else else
# otherwise, call `fc -l 1` to show all available # otherwise, call `fc -l 1` to show all available
# history (and pass additional parameters) # history (and pass additional parameters)
builtin fc "$@" -l 1 builtin fc -l 1 "$@"
fi fi
} }