Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f90afc9081 | ||
|
|
612b9b3afd | ||
|
|
58891e05be | ||
|
|
baf7b18f73 | ||
|
|
cc37ed48be | ||
|
|
afe7dc6f8f | ||
|
|
8863a3a53c | ||
|
|
ee04a646d3 | ||
|
|
6ddee62977 | ||
|
|
8cf5fca9ca | ||
|
|
347fccb030 | ||
|
|
a026eb39c4 | ||
|
|
4d352e1849 | ||
|
|
db3f5ad5c3 |
12
.travis.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
language: vim
|
||||||
|
|
||||||
|
before_script: |
|
||||||
|
hg clone https://code.google.com/p/vim/
|
||||||
|
cd vim
|
||||||
|
./configure --with-features=huge --enable-rubyinterp
|
||||||
|
make
|
||||||
|
sudo make install
|
||||||
|
cd -
|
||||||
|
|
||||||
|
script: |
|
||||||
|
test/run !
|
||||||
@@ -1,11 +1,12 @@
|
|||||||

|

|
||||||
|

|
||||||
|
|
||||||
A single-file Vim plugin manager.
|
A single-file Vim plugin manager.
|
||||||
|
|
||||||
Somewhere between [Pathogen](https://github.com/tpope/vim-pathogen) and
|
Somewhere between [Pathogen](https://github.com/tpope/vim-pathogen) and
|
||||||
[Vundle](https://github.com/gmarik/vundle), but with faster parallel installer.
|
[Vundle](https://github.com/gmarik/vundle), but with faster parallel installer.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Pros.
|
### Pros.
|
||||||
|
|
||||||
|
|||||||
BIN
gif/Plugfile.gif
|
Before Width: | Height: | Size: 528 KiB |
BIN
gif/parallel.gif
|
Before Width: | Height: | Size: 306 KiB |
BIN
gif/pi.gif
|
Before Width: | Height: | Size: 922 KiB |
BIN
gif/pu.gif
|
Before Width: | Height: | Size: 247 KiB |
BIN
gif/serial.gif
|
Before Width: | Height: | Size: 650 KiB |
BIN
gif/si.gif
|
Before Width: | Height: | Size: 1.1 MiB |
BIN
gif/su.gif
|
Before Width: | Height: | Size: 521 KiB |
BIN
gif/vim-plug.gif
|
Before Width: | Height: | Size: 2.3 MiB |
55
plug.vim
@@ -58,7 +58,6 @@ set cpo&vim
|
|||||||
let s:plug_source = 'https://raw.github.com/junegunn/vim-plug/master/plug.vim'
|
let s:plug_source = 'https://raw.github.com/junegunn/vim-plug/master/plug.vim'
|
||||||
let s:plug_file = 'Plugfile'
|
let s:plug_file = 'Plugfile'
|
||||||
let s:plug_buf = -1
|
let s:plug_buf = -1
|
||||||
let s:loaded = {}
|
|
||||||
let s:is_win = has('win32') || has('win64')
|
let s:is_win = has('win32') || has('win64')
|
||||||
let s:me = expand('<sfile>:p')
|
let s:me = expand('<sfile>:p')
|
||||||
|
|
||||||
@@ -123,17 +122,9 @@ function! plug#end()
|
|||||||
augroup END
|
augroup END
|
||||||
augroup! PlugLOD
|
augroup! PlugLOD
|
||||||
endif
|
endif
|
||||||
|
let lod = {}
|
||||||
|
|
||||||
filetype off
|
filetype off
|
||||||
if exists('#filetypeplugin') &&
|
|
||||||
\ !empty(filter(values(g:plugs), 'has_key(v:val, "for")'))
|
|
||||||
unlet! g:did_load_ftplugin
|
|
||||||
augroup filetypeplugin
|
|
||||||
autocmd!
|
|
||||||
augroup END
|
|
||||||
augroup! filetypeplugin
|
|
||||||
endif
|
|
||||||
|
|
||||||
" we want to make sure the plugin directories are added to rtp in the same
|
" we want to make sure the plugin directories are added to rtp in the same
|
||||||
" order that they are registered with the Plug command. since the s:add_rtp
|
" order that they are registered with the Plug command. since the s:add_rtp
|
||||||
" function uses ^= to add plugin directories to the front of the rtp, we
|
" function uses ^= to add plugin directories to the front of the rtp, we
|
||||||
@@ -168,11 +159,20 @@ function! plug#end()
|
|||||||
for vim in split(globpath(s:rtp(plug), 'ftdetect/**/*.vim'), '\n')
|
for vim in split(globpath(s:rtp(plug), 'ftdetect/**/*.vim'), '\n')
|
||||||
execute 'source '.vim
|
execute 'source '.vim
|
||||||
endfor
|
endfor
|
||||||
|
for key in s:to_a(plug.for)
|
||||||
|
if !has_key(lod, key)
|
||||||
|
let lod[key] = []
|
||||||
|
endif
|
||||||
|
call add(lod[key], name)
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
|
for [key, names] in items(lod)
|
||||||
augroup PlugLOD
|
augroup PlugLOD
|
||||||
execute printf('autocmd FileType %s call <SID>lod_ft(%s, %s)',
|
execute printf('autocmd FileType %s call <SID>lod_ft(%s, %s)',
|
||||||
\ join(s:to_a(plug.for), ','), string(name), string(plug))
|
\ key, string(key), string(reverse(names)))
|
||||||
augroup END
|
augroup END
|
||||||
endif
|
|
||||||
endfor
|
endfor
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
syntax on
|
syntax on
|
||||||
@@ -207,12 +207,12 @@ function! s:lod(plug, types)
|
|||||||
endfor
|
endfor
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:lod_ft(name, plug)
|
function! s:lod_ft(pat, names)
|
||||||
if has_key(s:loaded, a:name)
|
for name in a:names
|
||||||
return
|
call s:lod(g:plugs[name], ['plugin', 'after'])
|
||||||
endif
|
endfor
|
||||||
call s:lod(a:plug, ['plugin', 'after'])
|
execute 'autocmd! PlugLOD FileType ' . a:pat
|
||||||
let s:loaded[a:name] = 1
|
let &l:filetype = &l:filetype
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:lod_cmd(cmd, bang, l1, l2, args, plug)
|
function! s:lod_cmd(cmd, bang, l1, l2, args, plug)
|
||||||
@@ -406,11 +406,15 @@ function! s:update_impl(pull, args) abort
|
|||||||
normal! 2G
|
normal! 2G
|
||||||
redraw
|
redraw
|
||||||
|
|
||||||
|
let len = len(g:plugs)
|
||||||
if has('ruby') && threads > 1
|
if has('ruby') && threads > 1
|
||||||
call s:update_parallel(a:pull, todo, threads)
|
call s:update_parallel(a:pull, todo, threads)
|
||||||
else
|
else
|
||||||
call s:update_serial(a:pull, todo)
|
call s:update_serial(a:pull, todo)
|
||||||
endif
|
endif
|
||||||
|
if len(g:plugs) > len
|
||||||
|
call plug#end()
|
||||||
|
endif
|
||||||
call s:finish(a:pull)
|
call s:finish(a:pull)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
@@ -687,6 +691,11 @@ function! s:system(cmd)
|
|||||||
return system(s:is_win ? '('.a:cmd.')' : a:cmd)
|
return system(s:is_win ? '('.a:cmd.')' : a:cmd)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! s:system_chomp(str)
|
||||||
|
let ret = s:system(a:str)
|
||||||
|
return v:shell_error ? '' : substitute(ret, '\n$', '', '')
|
||||||
|
endfunction
|
||||||
|
|
||||||
function! s:git_valid(spec, check_branch, cd)
|
function! s:git_valid(spec, check_branch, cd)
|
||||||
let ret = 1
|
let ret = 1
|
||||||
let msg = 'OK'
|
let msg = 'OK'
|
||||||
@@ -694,7 +703,7 @@ function! s:git_valid(spec, check_branch, cd)
|
|||||||
if a:cd | execute "cd " . s:esc(a:spec.dir) | endif
|
if a:cd | execute "cd " . s:esc(a:spec.dir) | endif
|
||||||
let result = split(s:system("git rev-parse --abbrev-ref HEAD 2>&1 && git config remote.origin.url"), '\n')
|
let result = split(s:system("git rev-parse --abbrev-ref HEAD 2>&1 && git config remote.origin.url"), '\n')
|
||||||
let remote = result[-1]
|
let remote = result[-1]
|
||||||
if v:shell_error != 0
|
if v:shell_error
|
||||||
let msg = join([remote, "PlugClean required."], "\n")
|
let msg = join([remote, "PlugClean required."], "\n")
|
||||||
let ret = 0
|
let ret = 0
|
||||||
elseif !s:compare_git_uri(remote, a:spec.uri)
|
elseif !s:compare_git_uri(remote, a:spec.uri)
|
||||||
@@ -704,11 +713,15 @@ function! s:git_valid(spec, check_branch, cd)
|
|||||||
let ret = 0
|
let ret = 0
|
||||||
elseif a:check_branch
|
elseif a:check_branch
|
||||||
let branch = result[0]
|
let branch = result[0]
|
||||||
if a:spec.branch != branch
|
if a:spec.branch !=# branch
|
||||||
let msg = 'Invalid branch: '.branch.'. Try PlugUpdate.'
|
let tag = s:system_chomp('git describe --exact-match --tags HEAD 2>&1')
|
||||||
|
if a:spec.branch !=# tag
|
||||||
|
let msg = printf('Invalid branch/tag: %s (expected: %s). Try PlugUpdate.',
|
||||||
|
\ (empty(tag) ? branch : tag), a:spec.branch)
|
||||||
let ret = 0
|
let ret = 0
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
if a:cd | cd - | endif
|
if a:cd | cd - | endif
|
||||||
else
|
else
|
||||||
let msg = 'Not found'
|
let msg = 'Not found'
|
||||||
|
|||||||
@@ -7,8 +7,10 @@ Test cases for vim-plug
|
|||||||
|
|
||||||
### Run
|
### Run
|
||||||
|
|
||||||
```vim
|
```
|
||||||
:e workflow.vader | Vader
|
./run
|
||||||
|
|
||||||
|
./run !
|
||||||
```
|
```
|
||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
@@ -18,7 +20,6 @@ Test cases for the following features are currently missing:
|
|||||||
- Output formatting
|
- Output formatting
|
||||||
- Timeout or interrupt cleaning up git processes
|
- Timeout or interrupt cleaning up git processes
|
||||||
- User prompt in PlugClean command
|
- User prompt in PlugClean command
|
||||||
- Automatic dependency resolution using Plugfile
|
|
||||||
- Single-threaded installer
|
- Single-threaded installer
|
||||||
- Windows support
|
- Windows support
|
||||||
|
|
||||||
|
|||||||
21
test/run
@@ -5,15 +5,18 @@ cd ..
|
|||||||
PLUG_SRC=$(pwd)/plug.vim
|
PLUG_SRC=$(pwd)/plug.vim
|
||||||
cd - > /dev/null
|
cd - > /dev/null
|
||||||
|
|
||||||
export VADER_RTP=$TMPDIR/vader-rtp
|
if [ ! -d vader.vim ]; then
|
||||||
vim -e +Vader -c ':call writefile([fnamemodify(globpath(&rtp, "autoload/vader.vim"), ":h:h")], $VADER_RTP)' +q
|
git clone https://github.com/junegunn/vader.vim.git
|
||||||
|
fi
|
||||||
|
|
||||||
MINI_VIMRC=$TMPDIR/mini-vimrc
|
cat > /tmp/mini-vimrc << VIMRC
|
||||||
cat > $MINI_VIMRC << EOF
|
set rtp+=vader.vim
|
||||||
let \$MYVIMRC = '$MINI_VIMRC'
|
|
||||||
set nocompatible
|
|
||||||
set rtp=$(cat $VADER_RTP)
|
|
||||||
source $PLUG_SRC
|
source $PLUG_SRC
|
||||||
EOF
|
VIMRC
|
||||||
|
|
||||||
|
if [ "$1" = '!' ]; then
|
||||||
|
/usr/local/bin/vim -Nu /tmp/mini-vimrc -c 'Vader! workflow.vader' > /dev/null
|
||||||
|
else
|
||||||
|
/usr/local/bin/vim -Nu /tmp/mini-vimrc -c 'Vader workflow.vader'
|
||||||
|
fi
|
||||||
|
|
||||||
vim -u $MINI_VIMRC +Vader*
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Execute (Initialize test environment):
|
Execute (Initialize test environment):
|
||||||
Save &rtp, g:plug_home, $MYVIMRC
|
Save &rtp, g:plugs, g:plug_home, $MYVIMRC
|
||||||
|
|
||||||
let vader = fnamemodify(globpath(&rtp, 'autoload/vader.vim'), ':h:h')
|
let vader = fnamemodify(globpath(&rtp, 'autoload/vader.vim'), ':h:h')
|
||||||
let plug = fnamemodify(globpath(&rtp, 'autoload/plug.vim'), ':h:h')
|
let plug = fnamemodify(globpath(&rtp, 'autoload/plug.vim'), ':h:h')
|
||||||
@@ -15,6 +15,15 @@ Execute (Initialize test environment):
|
|||||||
colo default
|
colo default
|
||||||
pclose
|
pclose
|
||||||
|
|
||||||
|
function! PlugStatusSorted()
|
||||||
|
PlugStatus
|
||||||
|
%y
|
||||||
|
q
|
||||||
|
normal! P
|
||||||
|
%sort
|
||||||
|
g/^$/d
|
||||||
|
endfunction
|
||||||
|
|
||||||
let g:vimrc_reloaded = 0
|
let g:vimrc_reloaded = 0
|
||||||
let vimrc = tempname()
|
let vimrc = tempname()
|
||||||
call writefile(['let g:vimrc_reloaded += 1'], vimrc)
|
call writefile(['let g:vimrc_reloaded += 1'], vimrc)
|
||||||
@@ -64,9 +73,15 @@ Execute (Test Plug command):
|
|||||||
AssertEqual join([temp_plugged, 'seoul256.vim/'], '/'), g:plugs['seoul256.vim'].dir
|
AssertEqual join([temp_plugged, 'seoul256.vim/'], '/'), g:plugs['seoul256.vim'].dir
|
||||||
AssertEqual 'no-t_co', g:plugs['seoul256.vim'].branch
|
AssertEqual 'no-t_co', g:plugs['seoul256.vim'].branch
|
||||||
|
|
||||||
|
" Git repo with tag
|
||||||
|
Plug 'junegunn/goyo.vim', '1.5.3'
|
||||||
|
AssertEqual 'https://git:@github.com/junegunn/goyo.vim.git', g:plugs['goyo.vim'].uri
|
||||||
|
AssertEqual join([temp_plugged, 'goyo.vim/'], '/'), g:plugs['goyo.vim'].dir
|
||||||
|
AssertEqual '1.5.3', g:plugs['goyo.vim'].branch
|
||||||
|
|
||||||
" Git URI
|
" Git URI
|
||||||
Plug 'git@github.com:junegunn/vim-emoji.git'
|
Plug 'https://bitbucket.org/junegunn/vim-emoji.git'
|
||||||
AssertEqual 'git@github.com:junegunn/vim-emoji.git', g:plugs['vim-emoji'].uri
|
AssertEqual 'https://bitbucket.org/junegunn/vim-emoji.git', g:plugs['vim-emoji'].uri
|
||||||
AssertEqual 'master', g:plugs['vim-emoji'].branch
|
AssertEqual 'master', g:plugs['vim-emoji'].branch
|
||||||
AssertEqual join([temp_plugged, 'vim-emoji/'], '/'), g:plugs['vim-emoji'].dir
|
AssertEqual join([temp_plugged, 'vim-emoji/'], '/'), g:plugs['vim-emoji'].dir
|
||||||
|
|
||||||
@@ -75,18 +90,20 @@ Execute (Test Plug command):
|
|||||||
AssertEqual 'https://git:@github.com/vim-scripts/beauty256.git', g:plugs.beauty256.uri
|
AssertEqual 'https://git:@github.com/vim-scripts/beauty256.git', g:plugs.beauty256.uri
|
||||||
AssertEqual 'master', g:plugs.beauty256.branch
|
AssertEqual 'master', g:plugs.beauty256.branch
|
||||||
|
|
||||||
AssertEqual 3, len(g:plugs)
|
AssertEqual 4, len(g:plugs)
|
||||||
|
|
||||||
Execute (Plug command with dictionary option):
|
Execute (Plug command with dictionary option):
|
||||||
|
Log string(g:plugs)
|
||||||
Plug 'junegunn/seoul256.vim', { 'branch': 'no-t_co', 'rtp': '././' }
|
Plug 'junegunn/seoul256.vim', { 'branch': 'no-t_co', 'rtp': '././' }
|
||||||
AssertEqual join([temp_plugged, 'seoul256.vim/'], '/'), g:plugs['seoul256.vim'].dir
|
AssertEqual join([temp_plugged, 'seoul256.vim/'], '/'), g:plugs['seoul256.vim'].dir
|
||||||
AssertEqual '././', g:plugs['seoul256.vim'].rtp
|
AssertEqual '././', g:plugs['seoul256.vim'].rtp
|
||||||
|
|
||||||
AssertEqual 3, len(g:plugs)
|
Log string(g:plugs)
|
||||||
|
AssertEqual 4, len(g:plugs)
|
||||||
|
|
||||||
Execute (PlugStatus before installation):
|
Execute (PlugStatus before installation):
|
||||||
PlugStatus
|
PlugStatus
|
||||||
AssertEqual 3, len(filter(getline(1, line('$')), 'v:val =~ "Not found"'))
|
AssertEqual 4, len(filter(getline(1, line('$')), 'v:val =~ "Not found"'))
|
||||||
q
|
q
|
||||||
|
|
||||||
Execute (PlugClean before installation):
|
Execute (PlugClean before installation):
|
||||||
@@ -116,25 +133,44 @@ Execute (PlugClean after installation):
|
|||||||
|
|
||||||
Execute (PlugStatus after installation):
|
Execute (PlugStatus after installation):
|
||||||
PlugStatus
|
PlugStatus
|
||||||
AssertEqual 3, len(filter(getline(1, line('$')), 'v:val =~ "OK"'))
|
AssertEqual 4, len(filter(getline(1, line('$')), 'v:val =~ "OK"'))
|
||||||
q
|
q
|
||||||
|
|
||||||
|
Execute (Change tag of goyo.vim):
|
||||||
|
call plug#begin()
|
||||||
|
Plug 'junegunn/goyo.vim'
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
Execute (PlugStatus):
|
||||||
|
call PlugStatusSorted()
|
||||||
|
|
||||||
|
Expect:
|
||||||
|
Invalid branch/tag: 1.5.3 (expected: master). Try PlugUpdate.
|
||||||
|
Finished. 1 error(s).
|
||||||
|
[=]
|
||||||
|
x goyo.vim:
|
||||||
|
|
||||||
|
Execute (PlugUpdate to set the right branch):
|
||||||
|
PlugUpdate
|
||||||
|
call PlugStatusSorted()
|
||||||
|
AssertEqual 2, g:vimrc_reloaded
|
||||||
|
|
||||||
|
Expect:
|
||||||
|
- goyo.vim: OK
|
||||||
|
Finished. 0 error(s).
|
||||||
|
[=]
|
||||||
|
|
||||||
Execute (Change branch of seoul256.vim):
|
Execute (Change branch of seoul256.vim):
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
Plug 'junegunn/seoul256.vim'
|
Plug 'junegunn/seoul256.vim'
|
||||||
Plug 'git@github.com:junegunn/vim-emoji.git'
|
Plug 'https://bitbucket.org/junegunn/vim-emoji.git'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
Execute (PlugStatus):
|
Execute (PlugStatus):
|
||||||
PlugStatus
|
call PlugStatusSorted()
|
||||||
%y
|
|
||||||
q
|
|
||||||
normal! P
|
|
||||||
%sort
|
|
||||||
g/^$/d
|
|
||||||
|
|
||||||
Expect:
|
Expect:
|
||||||
Invalid branch: no-t_co. Try PlugUpdate.
|
Invalid branch/tag: no-t_co (expected: master). Try PlugUpdate.
|
||||||
- vim-emoji: OK
|
- vim-emoji: OK
|
||||||
Finished. 1 error(s).
|
Finished. 1 error(s).
|
||||||
[==]
|
[==]
|
||||||
@@ -143,16 +179,11 @@ Expect:
|
|||||||
Execute (Change URI of seoul256.vim):
|
Execute (Change URI of seoul256.vim):
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
Plug 'junegunn.choi/seoul256.vim'
|
Plug 'junegunn.choi/seoul256.vim'
|
||||||
Plug 'git@github.com:junegunn/vim-emoji.git'
|
Plug 'https://bitbucket.org/junegunn/vim-emoji.git'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
Execute (PlugStatus):
|
Execute (PlugStatus):
|
||||||
PlugStatus
|
call PlugStatusSorted()
|
||||||
%y
|
|
||||||
q
|
|
||||||
normal! P
|
|
||||||
%sort
|
|
||||||
g/^$/d
|
|
||||||
|
|
||||||
Expect:
|
Expect:
|
||||||
Expected: https://git:@github.com/junegunn.choi/seoul256.vim.git
|
Expected: https://git:@github.com/junegunn.choi/seoul256.vim.git
|
||||||
@@ -172,6 +203,8 @@ Expect:
|
|||||||
|
|
||||||
Execute (PlugClean! to remove seoul256.vim):
|
Execute (PlugClean! to remove seoul256.vim):
|
||||||
PlugClean!
|
PlugClean!
|
||||||
|
" Three removed, emoji left
|
||||||
|
AssertEqual 3, len(filter(getline(1, line('$')), 'v:val =~ "^- "'))
|
||||||
AssertEqual 1, len(filter(getline(1, line('$')), 'v:val =~ "Removed"'))
|
AssertEqual 1, len(filter(getline(1, line('$')), 'v:val =~ "Removed"'))
|
||||||
Assert empty(globpath(&rtp, 'colors/seoul256.vim'))
|
Assert empty(globpath(&rtp, 'colors/seoul256.vim'))
|
||||||
Assert !empty(globpath(&rtp, 'autoload/emoji.vim'))
|
Assert !empty(globpath(&rtp, 'autoload/emoji.vim'))
|
||||||
@@ -184,16 +217,11 @@ Execute (Change GIT URI of vim-emoji):
|
|||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
Execute (PlugStatus):
|
Execute (PlugStatus):
|
||||||
PlugStatus
|
call PlugStatusSorted()
|
||||||
%y
|
|
||||||
q
|
|
||||||
normal! P
|
|
||||||
%sort
|
|
||||||
g/^$/d
|
|
||||||
|
|
||||||
Expect:
|
Expect:
|
||||||
Expected: https://git:@github.com/junegunn/vim-emoji.git
|
Expected: https://git:@github.com/junegunn/vim-emoji.git
|
||||||
Invalid URI: git@github.com:junegunn/vim-emoji.git
|
Invalid URI: https://bitbucket.org/junegunn/vim-emoji.git
|
||||||
Not found. Try PlugInstall.
|
Not found. Try PlugInstall.
|
||||||
PlugClean required.
|
PlugClean required.
|
||||||
Finished. 2 error(s).
|
Finished. 2 error(s).
|
||||||
@@ -203,6 +231,7 @@ Expect:
|
|||||||
|
|
||||||
Execute (PlugClean! to remove vim-emoji):
|
Execute (PlugClean! to remove vim-emoji):
|
||||||
PlugClean!
|
PlugClean!
|
||||||
|
AssertEqual 1, len(filter(getline(1, line('$')), 'v:val =~ "^- "'))
|
||||||
AssertEqual 1, len(filter(getline(1, line('$')), 'v:val =~ "Removed"'))
|
AssertEqual 1, len(filter(getline(1, line('$')), 'v:val =~ "Removed"'))
|
||||||
Assert empty(globpath(&rtp, 'colors/seoul256.vim'))
|
Assert empty(globpath(&rtp, 'colors/seoul256.vim'))
|
||||||
Assert empty(globpath(&rtp, 'autoload/emoji.vim'))
|
Assert empty(globpath(&rtp, 'autoload/emoji.vim'))
|
||||||
@@ -211,7 +240,7 @@ Execute (PlugClean! to remove vim-emoji):
|
|||||||
Execute (PlugUpdate to install both again):
|
Execute (PlugUpdate to install both again):
|
||||||
PlugUpdate
|
PlugUpdate
|
||||||
AssertEqual 2, len(filter(getline(1, line('$')), 'v:val =~ "Cloning into"'))
|
AssertEqual 2, len(filter(getline(1, line('$')), 'v:val =~ "Cloning into"'))
|
||||||
AssertEqual 2, g:vimrc_reloaded
|
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
|
||||||
@@ -219,7 +248,7 @@ 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
|
||||||
AssertEqual 2, len(filter(getline(1, line('$')), 'v:val =~ "Already up-to-date"'))
|
AssertEqual 2, len(filter(getline(1, line('$')), 'v:val =~ "Already up-to-date"'))
|
||||||
AssertEqual 3, g:vimrc_reloaded
|
AssertEqual 4, g:vimrc_reloaded
|
||||||
normal D
|
normal D
|
||||||
AssertEqual 'No updates.', getline(1)
|
AssertEqual 'No updates.', getline(1)
|
||||||
q
|
q
|
||||||
@@ -328,11 +357,7 @@ Execute (Partial PlugInstall):
|
|||||||
PlugInstall vim-fnr vim-easy-align 1
|
PlugInstall vim-fnr vim-easy-align 1
|
||||||
q
|
q
|
||||||
|
|
||||||
Execute (TODO Check dependent plugin):
|
Execute (Check dependent plugin):
|
||||||
^ It is a known issue that when a dependent plugin is installed, it is not
|
|
||||||
^ immediately added to runtimepath. It only becomes available when
|
|
||||||
^ plug#end() is called.
|
|
||||||
|
|
||||||
Assert &rtp =~ 'pseudocl', &rtp
|
Assert &rtp =~ 'pseudocl', &rtp
|
||||||
|
|
||||||
Given (Unaligned code):
|
Given (Unaligned code):
|
||||||
@@ -366,6 +391,6 @@ Execute (Cleanup):
|
|||||||
unlet g:plug_home
|
unlet g:plug_home
|
||||||
unlet g:vimrc_reloaded
|
unlet g:vimrc_reloaded
|
||||||
unlet temp_plugged vader plug basertp save_rtp repo lnum
|
unlet temp_plugged vader plug basertp save_rtp repo lnum
|
||||||
|
delf PlugStatusSorted
|
||||||
|
|
||||||
Restore
|
Restore
|
||||||
source $MYVIMRC
|
|
||||||
|
|||||||