From 4e85d6a67db5c05625638cd5ac1113b1bb663ee8 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 19 Feb 2015 23:17:24 +0900 Subject: [PATCH] Updated faq (markdown) --- faq.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/faq.md b/faq.md index b290ae2..dcb0902 100644 --- a/faq.md +++ b/faq.md @@ -20,7 +20,11 @@ call plug#begin('~/vimfiles/bundle') ### Plugins are not installed/updated in parallel -Your Vim does not support Ruby interface. `:echo has('ruby')` should print 1. +Parallel installer is only enabled when any of the following conditions is met + +1. Vim with Ruby support (`has('ruby')` / Ruby 1.8.7 or above) +2. Vim with Python support (`has('python')` / Python 2.6 or above) +3. Neovim with job control (`exists('##JobActivity')`) In order to setup Vim with Ruby support, you may refer to [this page](https://github.com/junegunn/vim-plug/wiki/ruby).