Browse Source

Prevent side effect of wildignore

Certain wildignore values prevented the various logs from being
viewable.

Fixes #249
pull/264/merge
Matthew Schulkind 13 years ago
committed by Jacobo de Vera
parent
commit
8e8cfda2d2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      autoload/vundle/scripts.vim

+ 2
- 2
autoload/vundle/scripts.vim View File

@ -28,7 +28,7 @@ func! s:view_log()
endif
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
endf
@ -69,7 +69,7 @@ func! s:view_changelog()
endif
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
endf


Loading…
Cancel
Save