Browse Source

make helptags generation ignore wildignore

- closes #21
pull/25/merge
gmarik 15 years ago
parent
commit
63d283ce98
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim
  2. +2
    -0
      test/vimrc

+ 1
- 1
autoload/vundle/installer.vim View File

@ -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


+ 2
- 0
test/vimrc View File

@ -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


Loading…
Cancel
Save