From 5e29521187d5e341a75fd880b54e08f62098f5b3 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 30 Jan 2017 00:43:35 +0900 Subject: [PATCH] Updated faq (markdown) --- faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faq.md b/faq.md index 9b613cb..57871ab 100644 --- a/faq.md +++ b/faq.md @@ -155,9 +155,9 @@ Yes, it automatically generates help tags for all of your plugins whenever you r _"Premature optimization is the root of all evil."_ -You most likely don't need them at all. A properly implemented Vim plugin should already load lazily without any help from the plugin manager (`:help autoload`). There are very few cases where those options actually make much sense. On-demand loading should only be used as the last resort. It is basically a hacky workaround and is not guaranteed to work in every case. +You most likely don't need them at all. A properly implemented Vim plugin should already load lazily without any help from the plugin manager (`:help autoload`). There are very few cases where those options actually make much sense. On-demand loading should only be used as the last resort. It is basically a hacky workaround and is not always guaranteed to work. -Before applying the options, break down the startup of time of Vim using `--startuptime` first to identify the plugins that takes more than a few milliseconds. +Before applying the options, make sure that you're tackling the right problem by breaking down the startup of time of Vim using `--startuptime`. See if there are plugins that take more than a few milliseconds. ```vim vim --startuptime /tmp/log