Browse Source

clone results so id doesnt get modified inplace

pull/75/head
gmarik 15 years ago
parent
commit
c66519076d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/scripts.vim

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

@ -60,7 +60,7 @@ func! vundle#scripts#view(title, headers, results)
exec g:vundle_view.'bd!'
endif
let results = map(a:results, ' printf("Bundle ' ."'%s'".'", v:val) ')
let results = map(copy(a:results), ' printf("Bundle ' ."'%s'".'", v:val) ')
exec 'silent pedit [Vundle] '.a:title
wincmd P | wincmd H


Loading…
Cancel
Save