mirror of
https://github.com/junegunn/vim-plug.git
synced 2025-12-21 16:11:29 +08:00
Replace s:extract_name with a single fnamemodify call
This commit is contained in:
6
plug.vim
6
plug.vim
@@ -313,7 +313,7 @@ function! s:add(force, repo, ...)
|
||||
|
||||
try
|
||||
let repo = s:trim(a:repo)
|
||||
let name = s:extract_name(repo)
|
||||
let name = fnamemodify(repo, ':t:s?\.git$??')
|
||||
if !a:force && has_key(g:plugs, name)
|
||||
let s:extended[name] = g:plugs[name]
|
||||
return
|
||||
@@ -367,10 +367,6 @@ function! s:infer_properties(name, repo)
|
||||
return properties
|
||||
endfunction
|
||||
|
||||
function! s:extract_name(repo)
|
||||
return substitute(fnamemodify(a:repo, ':t'), '\.git$', '', '')
|
||||
endfunction
|
||||
|
||||
function! s:install(...)
|
||||
call s:update_impl(0, a:000)
|
||||
endfunction
|
||||
|
||||
Reference in New Issue
Block a user