From b5116908019fb0ae12e1fa69b31a909b497f322f Mon Sep 17 00:00:00 2001 From: David Feinberg Date: Sun, 14 Dec 2014 17:53:08 -0800 Subject: [PATCH] added jenv_prompt_info to list of dummy implementations --- lib/prompt_info_functions.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/prompt_info_functions.zsh b/lib/prompt_info_functions.zsh index 335c02a3..fb6b6bf2 100644 --- a/lib/prompt_info_functions.zsh +++ b/lib/prompt_info_functions.zsh @@ -4,15 +4,15 @@ # of dummy implementations to help theme creators not receiving errors # without the need of implementing conditional clauses. # -# See also lib/bzr.zsh, lib/git.zsh and lib/nvm.zsh for -# git_prompt_info, bzr_prompt_info and nvm_prompt_info +# See also lib/bzr.zsh, lib/git.zsh, lib/jenv.zsh, and lib/nvm.zsh for +# git_prompt_info, bzr_prompt_info, jenv_prompt_info and nvm_prompt_info # Dummy implementations that return false to prevent command_not_found # errors with themes, that implement these functions # Real implementations will be used when the respective plugins are loaded function chruby_prompt_info hg_prompt_info pyenv_prompt_info \ rbenv_prompt_info svn_prompt_info vi_mode_prompt_info \ - virtualenv_prompt_info { + virtualenv_prompt_info jenv_prompt_info { return 1 }