Просмотр исходного кода

Stricter double-comma replacement

To handle paths ending with commas
Junegunn Choi 11 лет назад
Родитель
Сommit
0489b5deed
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      plug.vim

+ 1 - 1
plug.vim

@@ -287,7 +287,7 @@ function! s:reorg_rtp()
   let rtps     = map(s:loaded_names(), 's:rtp(g:plugs[v:val])')
   let afters   = filter(map(copy(rtps), 'globpath(v:val, "after")'), 'isdirectory(v:val)')
   let &rtp     = join(map(rtps, 's:escrtp(v:val)'), ',')
-                 \ . substitute(','.s:middle.',', ',,', ',', '')
+                 \ . substitute(','.s:middle.',', '^,,$', ',', '')
                  \ . join(map(afters, 's:escrtp(v:val)'), ',')
   let s:prtp   = &rtp