Przeglądaj źródła

Make sure update/install after PlugUpgrade work

By not assuming `frozen` property exists. I tried to fix it with
s:upgrade_specs, but it has no effect if the old version of vim-plug
doesn't know about it.
Junegunn Choi 11 lat temu
rodzic
commit
19b12e2216
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      plug.vim

+ 1 - 1
plug.vim

@@ -544,7 +544,7 @@ function! s:update_impl(pull, force, args) abort
                   \ remove(args, -1) : get(g:, 'plug_threads', 16)
 
   let managed = filter(copy(g:plugs), 's:is_managed(v:key)')
-  let todo = empty(args) ? filter(managed, '!v:val.frozen') :
+  let todo = empty(args) ? filter(managed, '!get(v:val, "frozen", 0)') :
                          \ filter(managed, 'index(args, v:key) >= 0')
 
   if empty(todo)