Fix many subtle issues regarding on-demand loading etc.
- On-demand loading - Fix loading of unwanted files (e.g. colors/*.vim, syntax/*.vim, etc.) - Filetyp-based on-demand loading - Load `after/ftdetect` as well - Make sure indent files are loaded by invoking `doautocmd filetypeindent FileType` - Ensure plugin loaded when it was added after Vim started - Do not reload $MYVIMRC after installtion/update - Instead simply call plug#end()
This commit is contained in:
parent
fe7c7e7b40
commit
61b77bc8e8
40
plug.vim
40
plug.vim
|
@ -123,7 +123,16 @@ function! s:to_a(v)
|
||||||
return type(a:v) == s:TYPE.list ? a:v : [a:v]
|
return type(a:v) == s:TYPE.list ? a:v : [a:v]
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! s:source(from, ...)
|
||||||
|
for pattern in a:000
|
||||||
|
for vim in split(globpath(a:from, pattern), '\n')
|
||||||
|
execute 'source '.vim
|
||||||
|
endfor
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
|
||||||
function! plug#end()
|
function! plug#end()
|
||||||
|
let reload = !has('vim_starting')
|
||||||
if !exists('g:plugs')
|
if !exists('g:plugs')
|
||||||
return s:err('Call plug#begin() first')
|
return s:err('Call plug#begin() first')
|
||||||
endif
|
endif
|
||||||
|
@ -144,7 +153,11 @@ function! plug#end()
|
||||||
for name in reverse(copy(g:plugs_order))
|
for name in reverse(copy(g:plugs_order))
|
||||||
let plug = g:plugs[name]
|
let plug = g:plugs[name]
|
||||||
if !has_key(plug, 'on') && !has_key(plug, 'for')
|
if !has_key(plug, 'on') && !has_key(plug, 'for')
|
||||||
call s:add_rtp(s:rtp(plug))
|
let rtp = s:rtp(plug)
|
||||||
|
call s:add_rtp(rtp)
|
||||||
|
if reload
|
||||||
|
call s:source(rtp, 'plugin/**/*.vim', 'after/plugin/**/*.vim')
|
||||||
|
endif
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -168,9 +181,7 @@ function! plug#end()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if has_key(plug, 'for')
|
if has_key(plug, 'for')
|
||||||
for vim in split(globpath(s:rtp(plug), 'ftdetect/**/*.vim'), '\n')
|
call s:source(s:rtp(plug), 'ftdetect/**/*.vim', 'after/ftdetect/**/*.vim')
|
||||||
execute 'source '.vim
|
|
||||||
endfor
|
|
||||||
for key in s:to_a(plug.for)
|
for key in s:to_a(plug.for)
|
||||||
if !has_key(lod, key)
|
if !has_key(lod, key)
|
||||||
let lod[key] = []
|
let lod[key] = []
|
||||||
|
@ -263,24 +274,23 @@ function! s:lod(plug, types)
|
||||||
let rtp = s:rtp(a:plug)
|
let rtp = s:rtp(a:plug)
|
||||||
call s:add_rtp(rtp)
|
call s:add_rtp(rtp)
|
||||||
for dir in a:types
|
for dir in a:types
|
||||||
for vim in split(globpath(rtp, dir.'/**/*.vim'), '\n')
|
call s:source(rtp, dir.'/**/*.vim')
|
||||||
execute 'source '.vim
|
|
||||||
endfor
|
|
||||||
endfor
|
endfor
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:lod_ft(pat, names)
|
function! s:lod_ft(pat, names)
|
||||||
for name in a:names
|
for name in a:names
|
||||||
call s:lod(g:plugs[name], ['plugin', 'after'])
|
call s:lod(g:plugs[name], ['plugin', 'after/plugin'])
|
||||||
endfor
|
endfor
|
||||||
call s:reorg_rtp()
|
call s:reorg_rtp()
|
||||||
execute 'autocmd! PlugLOD FileType ' . a:pat
|
execute 'autocmd! PlugLOD FileType ' . a:pat
|
||||||
silent! doautocmd filetypeplugin FileType
|
silent! doautocmd filetypeplugin FileType
|
||||||
|
silent! doautocmd filetypeindent FileType
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:lod_cmd(cmd, bang, l1, l2, args, name)
|
function! s:lod_cmd(cmd, bang, l1, l2, args, name)
|
||||||
execute 'delc '.a:cmd
|
execute 'delc '.a:cmd
|
||||||
call s:lod(g:plugs[a:name], ['plugin', 'ftdetect', 'after'])
|
call s:lod(g:plugs[a:name], ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin'])
|
||||||
call s:reorg_rtp()
|
call s:reorg_rtp()
|
||||||
execute printf('%s%s%s %s', (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args)
|
execute printf('%s%s%s %s', (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args)
|
||||||
endfunction
|
endfunction
|
||||||
|
@ -288,7 +298,7 @@ endfunction
|
||||||
function! s:lod_map(map, name, prefix)
|
function! s:lod_map(map, name, prefix)
|
||||||
execute 'unmap '.a:map
|
execute 'unmap '.a:map
|
||||||
execute 'iunmap '.a:map
|
execute 'iunmap '.a:map
|
||||||
call s:lod(g:plugs[a:name], ['plugin', 'ftdetect', 'after'])
|
call s:lod(g:plugs[a:name], ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin'])
|
||||||
call s:reorg_rtp()
|
call s:reorg_rtp()
|
||||||
let extra = ''
|
let extra = ''
|
||||||
while 1
|
while 1
|
||||||
|
@ -363,16 +373,13 @@ function! s:update(...)
|
||||||
call s:update_impl(1, a:000)
|
call s:update_impl(1, a:000)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:apply()
|
function! s:helptags()
|
||||||
for spec in values(g:plugs)
|
for spec in values(g:plugs)
|
||||||
let docd = join([spec.dir, 'doc'], '/')
|
let docd = join([spec.dir, 'doc'], '/')
|
||||||
if isdirectory(docd)
|
if isdirectory(docd)
|
||||||
silent! execute 'helptags '. join([spec.dir, 'doc'], '/')
|
silent! execute 'helptags '. join([spec.dir, 'doc'], '/')
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
runtime! plugin/*.vim
|
|
||||||
runtime! after/**/*.vim
|
|
||||||
silent! source $MYVIMRC
|
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:syntax()
|
function! s:syntax()
|
||||||
|
@ -503,10 +510,11 @@ endfunction
|
||||||
function! s:finish(pull)
|
function! s:finish(pull)
|
||||||
call append(3, '- Finishing ... ')
|
call append(3, '- Finishing ... ')
|
||||||
redraw
|
redraw
|
||||||
call s:apply()
|
call s:helptags()
|
||||||
call s:syntax()
|
call plug#end()
|
||||||
call setline(4, getline(4) . 'Done!')
|
call setline(4, getline(4) . 'Done!')
|
||||||
normal! gg
|
normal! gg
|
||||||
|
call s:syntax()
|
||||||
redraw
|
redraw
|
||||||
let msgs = []
|
let msgs = []
|
||||||
if !empty(s:prev_update.errors)
|
if !empty(s:prev_update.errors)
|
||||||
|
|
17
test/run
17
test/run
|
@ -14,6 +14,23 @@ if [ ! -d fzf-staged ]; then
|
||||||
git clone https://github.com/junegunn/fzf.git fzf-staged
|
git clone https://github.com/junegunn/fzf.git fzf-staged
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
make_dirs() {
|
||||||
|
mkdir -p "$1"
|
||||||
|
cd "$1"
|
||||||
|
mkdir -p autoload colors ftdetect ftplugin indent plugin syntax
|
||||||
|
for d in *; do
|
||||||
|
cat > $d/xxx.vim << EOF
|
||||||
|
" echom expand('<sfile>')
|
||||||
|
let g:xxx = get(g:, 'xxx', [])
|
||||||
|
call add(g:xxx, '${1:4}/$d')
|
||||||
|
EOF
|
||||||
|
done
|
||||||
|
cd - > /dev/null
|
||||||
|
}
|
||||||
|
|
||||||
|
make_dirs xxx/
|
||||||
|
make_dirs xxx/after
|
||||||
|
|
||||||
cat > /tmp/mini-vimrc << VIMRC
|
cat > /tmp/mini-vimrc << VIMRC
|
||||||
set rtp+=vader.vim
|
set rtp+=vader.vim
|
||||||
source $PLUG_SRC
|
source $PLUG_SRC
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Execute (Initialize test environment):
|
Execute (Initialize test environment):
|
||||||
Save &rtp, g:plugs, g:plug_home, $MYVIMRC
|
Save &rtp, g:plugs, g:plug_home
|
||||||
|
|
||||||
let first_rtp = split(&rtp, ',')[0]
|
let first_rtp = split(&rtp, ',')[0]
|
||||||
let last_rtp = split(&rtp, ',')[-1]
|
let last_rtp = split(&rtp, ',')[-1]
|
||||||
|
@ -33,11 +33,6 @@ Execute (Initialize test environment):
|
||||||
endfunction
|
endfunction
|
||||||
command! -nargs=+ -bang AssertExpect call AssertExpect('<bang>' == '!', <args>)
|
command! -nargs=+ -bang AssertExpect call AssertExpect('<bang>' == '!', <args>)
|
||||||
|
|
||||||
let g:vimrc_reloaded = 0
|
|
||||||
let vimrc = tempname()
|
|
||||||
call writefile(['let g:vimrc_reloaded += 1'], vimrc)
|
|
||||||
let $MYVIMRC = vimrc
|
|
||||||
|
|
||||||
Execute (plug#end() before plug#begin() should fail):
|
Execute (plug#end() before plug#begin() should fail):
|
||||||
redir => out
|
redir => out
|
||||||
AssertEqual 0, plug#end()
|
AssertEqual 0, plug#end()
|
||||||
|
@ -133,7 +128,6 @@ Execute (Yet, plugins are not available):
|
||||||
|
|
||||||
Execute (PlugInstall):
|
Execute (PlugInstall):
|
||||||
PlugInstall
|
PlugInstall
|
||||||
AssertEqual 1, g:vimrc_reloaded
|
|
||||||
q
|
q
|
||||||
|
|
||||||
Execute (Plugin available after installation):
|
Execute (Plugin available after installation):
|
||||||
|
@ -167,7 +161,6 @@ Expect:
|
||||||
Execute (PlugUpdate to set the right branch):
|
Execute (PlugUpdate to set the right branch):
|
||||||
PlugUpdate
|
PlugUpdate
|
||||||
call PlugStatusSorted()
|
call PlugStatusSorted()
|
||||||
AssertEqual 2, g:vimrc_reloaded
|
|
||||||
|
|
||||||
Expect:
|
Expect:
|
||||||
- goyo.vim: OK
|
- goyo.vim: OK
|
||||||
|
@ -254,7 +247,6 @@ Execute (PlugClean! to remove vim-emoji):
|
||||||
Execute (PlugUpdate to install both again):
|
Execute (PlugUpdate to install both again):
|
||||||
PlugUpdate
|
PlugUpdate
|
||||||
AssertExpect '^- [^:]*:', 2
|
AssertExpect '^- [^:]*:', 2
|
||||||
AssertEqual 3, g:vimrc_reloaded
|
|
||||||
Assert !empty(globpath(&rtp, 'colors/seoul256.vim')), 'seoul256.vim should be found'
|
Assert !empty(globpath(&rtp, 'colors/seoul256.vim')), 'seoul256.vim should be found'
|
||||||
Assert !empty(globpath(&rtp, 'autoload/emoji.vim')), 'vim-emoji should be found'
|
Assert !empty(globpath(&rtp, 'autoload/emoji.vim')), 'vim-emoji should be found'
|
||||||
q
|
q
|
||||||
|
@ -262,7 +254,6 @@ Execute (PlugUpdate to install both again):
|
||||||
Execute (PlugUpdate only to find out plugins are up-to-date, D key to check):
|
Execute (PlugUpdate only to find out plugins are up-to-date, D key to check):
|
||||||
PlugUpdate
|
PlugUpdate
|
||||||
AssertExpect 'Already up-to-date', 2
|
AssertExpect 'Already up-to-date', 2
|
||||||
AssertEqual 4, g:vimrc_reloaded
|
|
||||||
normal D
|
normal D
|
||||||
AssertEqual 'No updates.', getline(1)
|
AssertEqual 'No updates.', getline(1)
|
||||||
q
|
q
|
||||||
|
@ -384,9 +375,14 @@ Given (Unaligned code):
|
||||||
aa=2
|
aa=2
|
||||||
|
|
||||||
Execute (Check installed plugins):
|
Execute (Check installed plugins):
|
||||||
|
if has('vim_starting')
|
||||||
|
Log 'Vader is run from commandline'
|
||||||
|
runtime! plugin/**/*.vim
|
||||||
|
endif
|
||||||
Assert exists(':FNR'), 'FNR command should be found'
|
Assert exists(':FNR'), 'FNR command should be found'
|
||||||
Assert exists(':EasyAlign'), 'EasyAlign command should be found'
|
|
||||||
Assert !exists(':RedisExecute'), 'RedisExecute command still should not be found'
|
Assert !exists(':RedisExecute'), 'RedisExecute command still should not be found'
|
||||||
|
|
||||||
|
Assert exists(':EasyAlign'), 'EasyAlign command should be found'
|
||||||
%EasyAlign=
|
%EasyAlign=
|
||||||
|
|
||||||
Expect (Aligned code):
|
Expect (Aligned code):
|
||||||
|
@ -683,19 +679,64 @@ Execute (Using custom dir):
|
||||||
q
|
q
|
||||||
Assert isdirectory(g:plugs['vim-easy-align'].dir)
|
Assert isdirectory(g:plugs['vim-easy-align'].dir)
|
||||||
|
|
||||||
Execute (Cleanup):
|
**********************************************************************
|
||||||
call system('rm -rf '.temp_plugged)
|
~ On-demand loading load order
|
||||||
call rename('fzf', 'fzf-staged')
|
**********************************************************************
|
||||||
|
Before (Clear global vars):
|
||||||
|
let g:xxx = []
|
||||||
|
set rtp-=$PWD/xxx/
|
||||||
|
set rtp-=$PWD/xxx/after
|
||||||
|
|
||||||
unlet g:plugs
|
Execute (Immediate loading):
|
||||||
unlet g:plug_home
|
call plug#begin()
|
||||||
unlet g:vimrc_reloaded
|
Plug '$PWD/xxx'
|
||||||
unlet temp_plugged vader plug basertp save_rtp repo lnum fzf out
|
call plug#end()
|
||||||
delf PlugStatusSorted
|
|
||||||
delf AssertExpect
|
" FIXME:
|
||||||
delf PlugUpdated
|
" Different result when Vader is run from commandline with `-c` option
|
||||||
delc AssertExpect
|
Log g:xxx
|
||||||
unmap /
|
if has('vim_starting')
|
||||||
unmap ?
|
AssertEqual ['/ftdetect', 'after/ftdetect'], g:xxx
|
||||||
|
else
|
||||||
|
AssertEqual ['/plugin', 'after/plugin', '/ftdetect', 'after/ftdetect'], g:xxx
|
||||||
|
endif
|
||||||
|
|
||||||
|
Execute (Command-based on-demand loading):
|
||||||
|
call plug#begin()
|
||||||
|
Plug '$PWD/xxx', { 'on': 'XXX' }
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
AssertEqual [], g:xxx
|
||||||
|
|
||||||
|
silent! XXX
|
||||||
|
AssertEqual ['/ftdetect', 'after/ftdetect', '/plugin', 'after/plugin'], g:xxx
|
||||||
|
|
||||||
|
setf xxx
|
||||||
|
AssertEqual ['/ftdetect', 'after/ftdetect', '/plugin', 'after/plugin', '/ftplugin', 'after/ftplugin', '/indent', 'after/indent', '/syntax', 'after/syntax'], g:xxx
|
||||||
|
|
||||||
|
Execute (Filetype-based on-demand loading):
|
||||||
|
call plug#begin()
|
||||||
|
Plug '$PWD/xxx', { 'for': 'xxx' }
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
AssertEqual ['/ftdetect', 'after/ftdetect'], g:xxx
|
||||||
|
|
||||||
|
setf xxx
|
||||||
|
AssertEqual ['/ftdetect', 'after/ftdetect', '/plugin', 'after/plugin', '/ftplugin', 'after/ftplugin', '/indent', 'after/indent', '/syntax', 'after/syntax'], g:xxx
|
||||||
|
|
||||||
|
Before:
|
||||||
|
Execute (Cleanup):
|
||||||
|
silent! call system('rm -rf '.temp_plugged)
|
||||||
|
silent! call rename('fzf', 'fzf-staged')
|
||||||
|
silent! unlet g:plugs
|
||||||
|
silent! unlet g:plug_home
|
||||||
|
silent! unlet temp_plugged vader plug basertp save_rtp repo lnum fzf out
|
||||||
|
silent! delf PlugStatusSorted
|
||||||
|
silent! delf AssertExpect
|
||||||
|
silent! delf PlugUpdated
|
||||||
|
silent! delc AssertExpect
|
||||||
|
silent! unmap /
|
||||||
|
silent! unmap ?
|
||||||
|
|
||||||
Restore
|
Restore
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user