Browse Source

fix appending to nomodifiable buffer

- closes #80
pull/106/merge
gmarik 14 years ago
parent
commit
8122fb1a96
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      autoload/vundle/scripts.vim

+ 4
- 0
autoload/vundle/scripts.vim View File

@ -47,6 +47,10 @@ func! vundle#scripts#view(title, headers, results)
wincmd P | wincmd H
let g:vundle_view = bufnr('%')
"
" make buffer modifiable
" to append without errors
set modifiable
call append(0, a:headers + a:results)


Loading…
Cancel
Save