From ae6ded5ad795a7f4174bc10a5a02e1c0502e1352 Mon Sep 17 00:00:00 2001 From: LFDM <1986gh@gmail.com> Date: Tue, 31 Dec 2013 01:15:35 +0100 Subject: [PATCH] Returns false when rbenv is not found. --- lib/rbenv.zsh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/rbenv.zsh b/lib/rbenv.zsh index a8b6c323..f58074b8 100644 --- a/lib/rbenv.zsh +++ b/lib/rbenv.zsh @@ -1,2 +1,4 @@ # using the rbenv plugin will override this with a real implementation -function rbenv_prompt_info() {} +function rbenv_prompt_info() { + return 1 +}