From 619f9ed386a352559fb602db77e1f80e8bdb9871 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Sat, 12 Jan 2013 02:55:39 -0500 Subject: [PATCH] Recommend *, not {} This looks less weird. People who want to disable can look it up in the docs. --- README.markdown | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index d15d453..0eb7eef 100644 --- a/README.markdown +++ b/README.markdown @@ -47,11 +47,12 @@ name as an argument: execute pathogen#infect('stuff') -You can also pass an absolute path instead, if you append `/{}` to it. (This -is a flag to aid transition to a more flexible future API.) keep the plugins -I maintain under `~/src`, and this is how I add them: +You can also pass an absolute path instead, if you append `/*` to it. (This +is special cased for backwards compatiblity, but future versions will allow +any arbitrary glob.) I keep the plugins I maintain under `~/src`, and this is +how I add them: - execute pathogen#infect('~/src/vim/bundle/{}') + execute pathogen#infect('~/src/vim/bundle/*') Normally to generate documentation, Vim expects you to run `:helptags` on each directory with documentation (e.g., `:helptags ~/.vim/doc`).