Prevent side effect of wildignore

Certain wildignore values prevented the various logs from being
viewable.

Fixes #249
This commit is contained in:
Matthew Schulkind 2013-02-06 13:57:15 -05:00 committed by Jacobo de Vera
parent 4a07207e7c
commit 8e8cfda2d2

View File

@ -28,7 +28,7 @@ func! s:view_log()
endif endif
call writefile(g:vundle_log, g:vundle_log_file) call writefile(g:vundle_log, g:vundle_log_file)
silent pedit `=g:vundle_log_file` execute 'silent pedit ' . g:vundle_log_file
wincmd P | wincmd H wincmd P | wincmd H
endf endf
@ -69,7 +69,7 @@ func! s:view_changelog()
endif endif
call writefile(g:vundle_changelog, g:vundle_changelog_file) call writefile(g:vundle_changelog, g:vundle_changelog_file)
silent pedit `=g:vundle_changelog_file` execute 'silent pedit ' . g:vundle_changelog_file
wincmd P | wincmd H wincmd P | wincmd H
endf endf