From 63d283ce988ce3b8b62315cf0861a4dad1a0fb6b Mon Sep 17 00:00:00 2001 From: gmarik Date: Wed, 27 Apr 2011 21:21:09 -0500 Subject: [PATCH] make helptags generation ignore wildignore - closes #21 --- autoload/vundle/installer.vim | 2 +- test/vimrc | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 24bf77b..e0fbdda 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -58,7 +58,7 @@ func! s:has_doc(rtp) abort endf func! s:helptags(rtp) abort - helptags `=a:rtp.'/doc'` + helptags `=a:rtp.'/doc/'` endf func! s:sync(bang, bundle) abort diff --git a/test/vimrc b/test/vimrc index bcd58d1..172679e 100644 --- a/test/vimrc +++ b/test/vimrc @@ -38,6 +38,8 @@ Bundle 'vim-scripts/RubySinatra' filetype plugin indent on " Automatically detect file types. +set wildignore+=doc " should not break helptags + BundleInstall func! s:assert_bundles() abort