Sun, 20 Oct 2019 01:05:59 -0500
vimfiler and unite out, netrw and vinegar in
724 | 1 | " vim-plug: Vim plugin manager |
2 | " ============================ | |
3 | " | |
4 | " Download plug.vim and put it in ~/.vim/autoload | |
5 | " | |
6 | " curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
7 | " https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
8 | " | |
9 | " Edit your .vimrc | |
10 | " | |
11 | " call plug#begin('~/.vim/plugged') | |
12 | " | |
13 | " " Make sure you use single quotes | |
14 | " | |
15 | " " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
16 | " Plug 'junegunn/vim-easy-align' | |
17 | " | |
18 | " " Any valid git URL is allowed | |
19 | " Plug 'https://github.com/junegunn/vim-github-dashboard.git' | |
20 | " | |
21 | " " Multiple Plug commands can be written in a single line using | separators | |
22 | " Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' | |
23 | " | |
24 | " " On-demand loading | |
25 | " Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
26 | " Plug 'tpope/vim-fireplace', { 'for': 'clojure' } | |
27 | " | |
28 | " " Using a non-master branch | |
29 | " Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } | |
30 | " | |
31 | " " Using a tagged release; wildcard allowed (requires git 1.9.2 or above) | |
32 | " Plug 'fatih/vim-go', { 'tag': '*' } | |
33 | " | |
34 | " " Plugin options | |
35 | " Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } | |
36 | " | |
37 | " " Plugin outside ~/.vim/plugged with post-update hook | |
38 | " Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
39 | " | |
40 | " " Unmanaged plugin (manually installed and updated) | |
41 | " Plug '~/my-prototype-plugin' | |
42 | " | |
43 | " " Initialize plugin system | |
44 | " call plug#end() | |
45 | " | |
46 | " Then reload .vimrc and :PlugInstall to install plugins. | |
47 | " | |
48 | " Plug options: | |
49 | " | |
50 | "| Option | Description | | |
51 | "| ----------------------- | ------------------------------------------------ | | |
52 | "| `branch`/`tag`/`commit` | Branch/tag/commit of the repository to use | | |
53 | "| `rtp` | Subdirectory that contains Vim plugin | | |
54 | "| `dir` | Custom directory for the plugin | | |
55 | "| `as` | Use different name for the plugin | | |
56 | "| `do` | Post-update hook (string or funcref) | | |
57 | "| `on` | On-demand loading: Commands or `<Plug>`-mappings | | |
58 | "| `for` | On-demand loading: File types | | |
59 | "| `frozen` | Do not update unless explicitly specified | | |
60 | " | |
61 | " More information: https://github.com/junegunn/vim-plug | |
62 | " | |
63 | " | |
64 | " Copyright (c) 2017 Junegunn Choi | |
65 | " | |
66 | " MIT License | |
67 | " | |
68 | " Permission is hereby granted, free of charge, to any person obtaining | |
69 | " a copy of this software and associated documentation files (the | |
70 | " "Software"), to deal in the Software without restriction, including | |
71 | " without limitation the rights to use, copy, modify, merge, publish, | |
72 | " distribute, sublicense, and/or sell copies of the Software, and to | |
73 | " permit persons to whom the Software is furnished to do so, subject to | |
74 | " the following conditions: | |
75 | " | |
76 | " The above copyright notice and this permission notice shall be | |
77 | " included in all copies or substantial portions of the Software. | |
78 | " | |
79 | " THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
80 | " EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
81 | " MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
82 | " NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | |
83 | " LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | |
84 | " OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | |
85 | " WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
86 | ||
87 | if exists('g:loaded_plug') | |
88 | finish | |
89 | endif | |
90 | let g:loaded_plug = 1 | |
91 | ||
92 | let s:cpo_save = &cpo | |
93 | set cpo&vim | |
94 | ||
95 | let s:plug_src = 'https://github.com/junegunn/vim-plug.git' | |
96 | let s:plug_tab = get(s:, 'plug_tab', -1) | |
97 | let s:plug_buf = get(s:, 'plug_buf', -1) | |
98 | let s:mac_gui = has('gui_macvim') && has('gui_running') | |
99 | let s:is_win = has('win32') | |
100 | let s:nvim = has('nvim-0.2') || (has('nvim') && exists('*jobwait') && !s:is_win) | |
101 | let s:vim8 = has('patch-8.0.0039') && exists('*job_start') | |
102 | let s:me = resolve(expand('<sfile>:p')) | |
103 | let s:base_spec = { 'branch': 'master', 'frozen': 0 } | |
104 | let s:TYPE = { | |
105 | \ 'string': type(''), | |
106 | \ 'list': type([]), | |
107 | \ 'dict': type({}), | |
108 | \ 'funcref': type(function('call')) | |
109 | \ } | |
110 | let s:loaded = get(s:, 'loaded', {}) | |
111 | let s:triggers = get(s:, 'triggers', {}) | |
112 | ||
113 | function! plug#begin(...) | |
114 | if a:0 > 0 | |
115 | let s:plug_home_org = a:1 | |
116 | let home = s:path(fnamemodify(expand(a:1), ':p')) | |
117 | elseif exists('g:plug_home') | |
118 | let home = s:path(g:plug_home) | |
119 | elseif !empty(&rtp) | |
120 | let home = s:path(split(&rtp, ',')[0]) . '/plugged' | |
121 | else | |
122 | return s:err('Unable to determine plug home. Try calling plug#begin() with a path argument.') | |
123 | endif | |
124 | if fnamemodify(home, ':t') ==# 'plugin' && fnamemodify(home, ':h') ==# s:first_rtp | |
125 | return s:err('Invalid plug home. '.home.' is a standard Vim runtime path and is not allowed.') | |
126 | endif | |
127 | ||
128 | let g:plug_home = home | |
129 | let g:plugs = {} | |
130 | let g:plugs_order = [] | |
131 | let s:triggers = {} | |
132 | ||
133 | call s:define_commands() | |
134 | return 1 | |
135 | endfunction | |
136 | ||
137 | function! s:define_commands() | |
138 | command! -nargs=+ -bar Plug call plug#(<args>) | |
139 | if !executable('git') | |
140 | return s:err('`git` executable not found. Most commands will not be available. To suppress this message, prepend `silent!` to `call plug#begin(...)`.') | |
141 | endif | |
142 | command! -nargs=* -bar -bang -complete=customlist,s:names PlugInstall call s:install(<bang>0, [<f-args>]) | |
143 | command! -nargs=* -bar -bang -complete=customlist,s:names PlugUpdate call s:update(<bang>0, [<f-args>]) | |
144 | command! -nargs=0 -bar -bang PlugClean call s:clean(<bang>0) | |
145 | command! -nargs=0 -bar PlugUpgrade if s:upgrade() | execute 'source' s:esc(s:me) | endif | |
146 | command! -nargs=0 -bar PlugStatus call s:status() | |
147 | command! -nargs=0 -bar PlugDiff call s:diff() | |
148 | command! -nargs=? -bar -bang -complete=file PlugSnapshot call s:snapshot(<bang>0, <f-args>) | |
149 | endfunction | |
150 | ||
151 | function! s:to_a(v) | |
152 | return type(a:v) == s:TYPE.list ? a:v : [a:v] | |
153 | endfunction | |
154 | ||
155 | function! s:to_s(v) | |
156 | return type(a:v) == s:TYPE.string ? a:v : join(a:v, "\n") . "\n" | |
157 | endfunction | |
158 | ||
159 | function! s:glob(from, pattern) | |
160 | return s:lines(globpath(a:from, a:pattern)) | |
161 | endfunction | |
162 | ||
163 | function! s:source(from, ...) | |
164 | let found = 0 | |
165 | for pattern in a:000 | |
166 | for vim in s:glob(a:from, pattern) | |
167 | execute 'source' s:esc(vim) | |
168 | let found = 1 | |
169 | endfor | |
170 | endfor | |
171 | return found | |
172 | endfunction | |
173 | ||
174 | function! s:assoc(dict, key, val) | |
175 | let a:dict[a:key] = add(get(a:dict, a:key, []), a:val) | |
176 | endfunction | |
177 | ||
178 | function! s:ask(message, ...) | |
179 | call inputsave() | |
180 | echohl WarningMsg | |
181 | let answer = input(a:message.(a:0 ? ' (y/N/a) ' : ' (y/N) ')) | |
182 | echohl None | |
183 | call inputrestore() | |
184 | echo "\r" | |
185 | return (a:0 && answer =~? '^a') ? 2 : (answer =~? '^y') ? 1 : 0 | |
186 | endfunction | |
187 | ||
188 | function! s:ask_no_interrupt(...) | |
189 | try | |
190 | return call('s:ask', a:000) | |
191 | catch | |
192 | return 0 | |
193 | endtry | |
194 | endfunction | |
195 | ||
196 | function! s:lazy(plug, opt) | |
197 | return has_key(a:plug, a:opt) && | |
198 | \ (empty(s:to_a(a:plug[a:opt])) || | |
199 | \ !isdirectory(a:plug.dir) || | |
200 | \ len(s:glob(s:rtp(a:plug), 'plugin')) || | |
201 | \ len(s:glob(s:rtp(a:plug), 'after/plugin'))) | |
202 | endfunction | |
203 | ||
204 | function! plug#end() | |
205 | if !exists('g:plugs') | |
206 | return s:err('Call plug#begin() first') | |
207 | endif | |
208 | ||
209 | if exists('#PlugLOD') | |
210 | augroup PlugLOD | |
211 | autocmd! | |
212 | augroup END | |
213 | augroup! PlugLOD | |
214 | endif | |
215 | let lod = { 'ft': {}, 'map': {}, 'cmd': {} } | |
216 | ||
217 | if exists('g:did_load_filetypes') | |
218 | filetype off | |
219 | endif | |
220 | for name in g:plugs_order | |
221 | if !has_key(g:plugs, name) | |
222 | continue | |
223 | endif | |
224 | let plug = g:plugs[name] | |
225 | if get(s:loaded, name, 0) || !s:lazy(plug, 'on') && !s:lazy(plug, 'for') | |
226 | let s:loaded[name] = 1 | |
227 | continue | |
228 | endif | |
229 | ||
230 | if has_key(plug, 'on') | |
231 | let s:triggers[name] = { 'map': [], 'cmd': [] } | |
232 | for cmd in s:to_a(plug.on) | |
233 | if cmd =~? '^<Plug>.\+' | |
234 | if empty(mapcheck(cmd)) && empty(mapcheck(cmd, 'i')) | |
235 | call s:assoc(lod.map, cmd, name) | |
236 | endif | |
237 | call add(s:triggers[name].map, cmd) | |
238 | elseif cmd =~# '^[A-Z]' | |
239 | let cmd = substitute(cmd, '!*$', '', '') | |
240 | if exists(':'.cmd) != 2 | |
241 | call s:assoc(lod.cmd, cmd, name) | |
242 | endif | |
243 | call add(s:triggers[name].cmd, cmd) | |
244 | else | |
245 | call s:err('Invalid `on` option: '.cmd. | |
246 | \ '. Should start with an uppercase letter or `<Plug>`.') | |
247 | endif | |
248 | endfor | |
249 | endif | |
250 | ||
251 | if has_key(plug, 'for') | |
252 | let types = s:to_a(plug.for) | |
253 | if !empty(types) | |
254 | augroup filetypedetect | |
255 | call s:source(s:rtp(plug), 'ftdetect/**/*.vim', 'after/ftdetect/**/*.vim') | |
256 | augroup END | |
257 | endif | |
258 | for type in types | |
259 | call s:assoc(lod.ft, type, name) | |
260 | endfor | |
261 | endif | |
262 | endfor | |
263 | ||
264 | for [cmd, names] in items(lod.cmd) | |
265 | execute printf( | |
266 | \ 'command! -nargs=* -range -bang -complete=file %s call s:lod_cmd(%s, "<bang>", <line1>, <line2>, <q-args>, %s)', | |
267 | \ cmd, string(cmd), string(names)) | |
268 | endfor | |
269 | ||
270 | for [map, names] in items(lod.map) | |
271 | for [mode, map_prefix, key_prefix] in | |
272 | \ [['i', '<C-O>', ''], ['n', '', ''], ['v', '', 'gv'], ['o', '', '']] | |
273 | execute printf( | |
274 | \ '%snoremap <silent> %s %s:<C-U>call <SID>lod_map(%s, %s, %s, "%s")<CR>', | |
275 | \ mode, map, map_prefix, string(map), string(names), mode != 'i', key_prefix) | |
276 | endfor | |
277 | endfor | |
278 | ||
279 | for [ft, names] in items(lod.ft) | |
280 | augroup PlugLOD | |
281 | execute printf('autocmd FileType %s call <SID>lod_ft(%s, %s)', | |
282 | \ ft, string(ft), string(names)) | |
283 | augroup END | |
284 | endfor | |
285 | ||
286 | call s:reorg_rtp() | |
287 | filetype plugin indent on | |
288 | if has('vim_starting') | |
289 | if has('syntax') && !exists('g:syntax_on') | |
290 | syntax enable | |
291 | end | |
292 | else | |
293 | call s:reload_plugins() | |
294 | endif | |
295 | endfunction | |
296 | ||
297 | function! s:loaded_names() | |
298 | return filter(copy(g:plugs_order), 'get(s:loaded, v:val, 0)') | |
299 | endfunction | |
300 | ||
301 | function! s:load_plugin(spec) | |
302 | call s:source(s:rtp(a:spec), 'plugin/**/*.vim', 'after/plugin/**/*.vim') | |
303 | endfunction | |
304 | ||
305 | function! s:reload_plugins() | |
306 | for name in s:loaded_names() | |
307 | call s:load_plugin(g:plugs[name]) | |
308 | endfor | |
309 | endfunction | |
310 | ||
311 | function! s:trim(str) | |
312 | return substitute(a:str, '[\/]\+$', '', '') | |
313 | endfunction | |
314 | ||
315 | function! s:version_requirement(val, min) | |
316 | for idx in range(0, len(a:min) - 1) | |
317 | let v = get(a:val, idx, 0) | |
318 | if v < a:min[idx] | return 0 | |
319 | elseif v > a:min[idx] | return 1 | |
320 | endif | |
321 | endfor | |
322 | return 1 | |
323 | endfunction | |
324 | ||
325 | function! s:git_version_requirement(...) | |
326 | if !exists('s:git_version') | |
327 | let s:git_version = map(split(split(s:system('git --version'))[2], '\.'), 'str2nr(v:val)') | |
328 | endif | |
329 | return s:version_requirement(s:git_version, a:000) | |
330 | endfunction | |
331 | ||
332 | function! s:progress_opt(base) | |
333 | return a:base && !s:is_win && | |
334 | \ s:git_version_requirement(1, 7, 1) ? '--progress' : '' | |
335 | endfunction | |
336 | ||
337 | if s:is_win | |
338 | function! s:rtp(spec) | |
339 | return s:path(a:spec.dir . get(a:spec, 'rtp', '')) | |
340 | endfunction | |
341 | ||
342 | function! s:path(path) | |
343 | return s:trim(substitute(a:path, '/', '\', 'g')) | |
344 | endfunction | |
345 | ||
346 | function! s:dirpath(path) | |
347 | return s:path(a:path) . '\' | |
348 | endfunction | |
349 | ||
350 | function! s:is_local_plug(repo) | |
351 | return a:repo =~? '^[a-z]:\|^[%~]' | |
352 | endfunction | |
795 | 353 | |
354 | " Copied from fzf | |
355 | function! s:wrap_cmds(cmds) | |
806 | 356 | let use_chcp = executable('sed') |
357 | return map([ | |
358 | \ '@echo off', | |
359 | \ 'setlocal enabledelayedexpansion'] | |
360 | \ + (use_chcp ? [ | |
361 | \ 'for /f "usebackq" %%a in (`chcp ^| sed "s/[^0-9]//gp"`) do set origchcp=%%a', | |
362 | \ 'chcp 65001 > nul'] : []) | |
363 | \ + (type(a:cmds) == type([]) ? a:cmds : [a:cmds]) | |
364 | \ + (use_chcp ? ['chcp !origchcp! > nul'] : []) | |
365 | \ + ['endlocal'], | |
366 | \ 'v:val."\r"') | |
795 | 367 | endfunction |
368 | ||
369 | function! s:batchfile(cmd) | |
370 | let batchfile = tempname().'.bat' | |
371 | call writefile(s:wrap_cmds(a:cmd), batchfile) | |
372 | let cmd = plug#shellescape(batchfile, {'shell': &shell, 'script': 1}) | |
373 | if &shell =~# 'powershell\.exe$' | |
374 | let cmd = '& ' . cmd | |
375 | endif | |
376 | return [batchfile, cmd] | |
377 | endfunction | |
724 | 378 | else |
379 | function! s:rtp(spec) | |
380 | return s:dirpath(a:spec.dir . get(a:spec, 'rtp', '')) | |
381 | endfunction | |
382 | ||
383 | function! s:path(path) | |
384 | return s:trim(a:path) | |
385 | endfunction | |
386 | ||
387 | function! s:dirpath(path) | |
388 | return substitute(a:path, '[/\\]*$', '/', '') | |
389 | endfunction | |
390 | ||
391 | function! s:is_local_plug(repo) | |
392 | return a:repo[0] =~ '[/$~]' | |
393 | endfunction | |
394 | endif | |
395 | ||
396 | function! s:err(msg) | |
397 | echohl ErrorMsg | |
398 | echom '[vim-plug] '.a:msg | |
399 | echohl None | |
400 | endfunction | |
401 | ||
402 | function! s:warn(cmd, msg) | |
403 | echohl WarningMsg | |
404 | execute a:cmd 'a:msg' | |
405 | echohl None | |
406 | endfunction | |
407 | ||
408 | function! s:esc(path) | |
409 | return escape(a:path, ' ') | |
410 | endfunction | |
411 | ||
412 | function! s:escrtp(path) | |
413 | return escape(a:path, ' ,') | |
414 | endfunction | |
415 | ||
416 | function! s:remove_rtp() | |
417 | for name in s:loaded_names() | |
418 | let rtp = s:rtp(g:plugs[name]) | |
419 | execute 'set rtp-='.s:escrtp(rtp) | |
420 | let after = globpath(rtp, 'after') | |
421 | if isdirectory(after) | |
422 | execute 'set rtp-='.s:escrtp(after) | |
423 | endif | |
424 | endfor | |
425 | endfunction | |
426 | ||
427 | function! s:reorg_rtp() | |
428 | if !empty(s:first_rtp) | |
429 | execute 'set rtp-='.s:first_rtp | |
430 | execute 'set rtp-='.s:last_rtp | |
431 | endif | |
432 | ||
433 | " &rtp is modified from outside | |
434 | if exists('s:prtp') && s:prtp !=# &rtp | |
435 | call s:remove_rtp() | |
436 | unlet! s:middle | |
437 | endif | |
438 | ||
439 | let s:middle = get(s:, 'middle', &rtp) | |
440 | let rtps = map(s:loaded_names(), 's:rtp(g:plugs[v:val])') | |
441 | let afters = filter(map(copy(rtps), 'globpath(v:val, "after")'), '!empty(v:val)') | |
442 | let rtp = join(map(rtps, 'escape(v:val, ",")'), ',') | |
443 | \ . ','.s:middle.',' | |
444 | \ . join(map(afters, 'escape(v:val, ",")'), ',') | |
445 | let &rtp = substitute(substitute(rtp, ',,*', ',', 'g'), '^,\|,$', '', 'g') | |
446 | let s:prtp = &rtp | |
447 | ||
448 | if !empty(s:first_rtp) | |
449 | execute 'set rtp^='.s:first_rtp | |
450 | execute 'set rtp+='.s:last_rtp | |
451 | endif | |
452 | endfunction | |
453 | ||
454 | function! s:doautocmd(...) | |
455 | if exists('#'.join(a:000, '#')) | |
456 | execute 'doautocmd' ((v:version > 703 || has('patch442')) ? '<nomodeline>' : '') join(a:000) | |
457 | endif | |
458 | endfunction | |
459 | ||
460 | function! s:dobufread(names) | |
461 | for name in a:names | |
766 | 462 | let path = s:rtp(g:plugs[name]) |
463 | for dir in ['ftdetect', 'ftplugin', 'after/ftdetect', 'after/ftplugin'] | |
724 | 464 | if len(finddir(dir, path)) |
465 | if exists('#BufRead') | |
466 | doautocmd BufRead | |
467 | endif | |
468 | return | |
469 | endif | |
470 | endfor | |
471 | endfor | |
472 | endfunction | |
473 | ||
474 | function! plug#load(...) | |
475 | if a:0 == 0 | |
476 | return s:err('Argument missing: plugin name(s) required') | |
477 | endif | |
478 | if !exists('g:plugs') | |
479 | return s:err('plug#begin was not called') | |
480 | endif | |
481 | let names = a:0 == 1 && type(a:1) == s:TYPE.list ? a:1 : a:000 | |
482 | let unknowns = filter(copy(names), '!has_key(g:plugs, v:val)') | |
483 | if !empty(unknowns) | |
484 | let s = len(unknowns) > 1 ? 's' : '' | |
485 | return s:err(printf('Unknown plugin%s: %s', s, join(unknowns, ', '))) | |
486 | end | |
487 | let unloaded = filter(copy(names), '!get(s:loaded, v:val, 0)') | |
488 | if !empty(unloaded) | |
489 | for name in unloaded | |
490 | call s:lod([name], ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) | |
491 | endfor | |
492 | call s:dobufread(unloaded) | |
493 | return 1 | |
494 | end | |
495 | return 0 | |
496 | endfunction | |
497 | ||
498 | function! s:remove_triggers(name) | |
499 | if !has_key(s:triggers, a:name) | |
500 | return | |
501 | endif | |
502 | for cmd in s:triggers[a:name].cmd | |
503 | execute 'silent! delc' cmd | |
504 | endfor | |
505 | for map in s:triggers[a:name].map | |
506 | execute 'silent! unmap' map | |
507 | execute 'silent! iunmap' map | |
508 | endfor | |
509 | call remove(s:triggers, a:name) | |
510 | endfunction | |
511 | ||
512 | function! s:lod(names, types, ...) | |
513 | for name in a:names | |
514 | call s:remove_triggers(name) | |
515 | let s:loaded[name] = 1 | |
516 | endfor | |
517 | call s:reorg_rtp() | |
518 | ||
519 | for name in a:names | |
520 | let rtp = s:rtp(g:plugs[name]) | |
521 | for dir in a:types | |
522 | call s:source(rtp, dir.'/**/*.vim') | |
523 | endfor | |
524 | if a:0 | |
525 | if !s:source(rtp, a:1) && !empty(s:glob(rtp, a:2)) | |
526 | execute 'runtime' a:1 | |
527 | endif | |
528 | call s:source(rtp, a:2) | |
529 | endif | |
530 | call s:doautocmd('User', name) | |
531 | endfor | |
532 | endfunction | |
533 | ||
534 | function! s:lod_ft(pat, names) | |
535 | let syn = 'syntax/'.a:pat.'.vim' | |
536 | call s:lod(a:names, ['plugin', 'after/plugin'], syn, 'after/'.syn) | |
537 | execute 'autocmd! PlugLOD FileType' a:pat | |
538 | call s:doautocmd('filetypeplugin', 'FileType') | |
539 | call s:doautocmd('filetypeindent', 'FileType') | |
540 | endfunction | |
541 | ||
542 | function! s:lod_cmd(cmd, bang, l1, l2, args, names) | |
543 | call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) | |
544 | call s:dobufread(a:names) | |
545 | execute printf('%s%s%s %s', (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args) | |
546 | endfunction | |
547 | ||
548 | function! s:lod_map(map, names, with_prefix, prefix) | |
549 | call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) | |
550 | call s:dobufread(a:names) | |
551 | let extra = '' | |
552 | while 1 | |
553 | let c = getchar(0) | |
554 | if c == 0 | |
555 | break | |
556 | endif | |
557 | let extra .= nr2char(c) | |
558 | endwhile | |
559 | ||
560 | if a:with_prefix | |
561 | let prefix = v:count ? v:count : '' | |
562 | let prefix .= '"'.v:register.a:prefix | |
563 | if mode(1) == 'no' | |
564 | if v:operator == 'c' | |
565 | let prefix = "\<esc>" . prefix | |
566 | endif | |
567 | let prefix .= v:operator | |
568 | endif | |
569 | call feedkeys(prefix, 'n') | |
570 | endif | |
571 | call feedkeys(substitute(a:map, '^<Plug>', "\<Plug>", '') . extra) | |
572 | endfunction | |
573 | ||
574 | function! plug#(repo, ...) | |
575 | if a:0 > 1 | |
576 | return s:err('Invalid number of arguments (1..2)') | |
577 | endif | |
578 | ||
579 | try | |
580 | let repo = s:trim(a:repo) | |
581 | let opts = a:0 == 1 ? s:parse_options(a:1) : s:base_spec | |
582 | let name = get(opts, 'as', fnamemodify(repo, ':t:s?\.git$??')) | |
583 | let spec = extend(s:infer_properties(name, repo), opts) | |
584 | if !has_key(g:plugs, name) | |
585 | call add(g:plugs_order, name) | |
586 | endif | |
587 | let g:plugs[name] = spec | |
588 | let s:loaded[name] = get(s:loaded, name, 0) | |
589 | catch | |
590 | return s:err(v:exception) | |
591 | endtry | |
592 | endfunction | |
593 | ||
594 | function! s:parse_options(arg) | |
595 | let opts = copy(s:base_spec) | |
596 | let type = type(a:arg) | |
597 | if type == s:TYPE.string | |
598 | let opts.tag = a:arg | |
599 | elseif type == s:TYPE.dict | |
600 | call extend(opts, a:arg) | |
601 | if has_key(opts, 'dir') | |
602 | let opts.dir = s:dirpath(expand(opts.dir)) | |
603 | endif | |
604 | else | |
605 | throw 'Invalid argument type (expected: string or dictionary)' | |
606 | endif | |
607 | return opts | |
608 | endfunction | |
609 | ||
610 | function! s:infer_properties(name, repo) | |
611 | let repo = a:repo | |
612 | if s:is_local_plug(repo) | |
613 | return { 'dir': s:dirpath(expand(repo)) } | |
614 | else | |
615 | if repo =~ ':' | |
616 | let uri = repo | |
617 | else | |
618 | if repo !~ '/' | |
619 | throw printf('Invalid argument: %s (implicit `vim-scripts'' expansion is deprecated)', repo) | |
620 | endif | |
621 | let fmt = get(g:, 'plug_url_format', 'https://git::@github.com/%s.git') | |
622 | let uri = printf(fmt, repo) | |
623 | endif | |
624 | return { 'dir': s:dirpath(g:plug_home.'/'.a:name), 'uri': uri } | |
625 | endif | |
626 | endfunction | |
627 | ||
628 | function! s:install(force, names) | |
629 | call s:update_impl(0, a:force, a:names) | |
630 | endfunction | |
631 | ||
632 | function! s:update(force, names) | |
633 | call s:update_impl(1, a:force, a:names) | |
634 | endfunction | |
635 | ||
636 | function! plug#helptags() | |
637 | if !exists('g:plugs') | |
638 | return s:err('plug#begin was not called') | |
639 | endif | |
640 | for spec in values(g:plugs) | |
641 | let docd = join([s:rtp(spec), 'doc'], '/') | |
642 | if isdirectory(docd) | |
643 | silent! execute 'helptags' s:esc(docd) | |
644 | endif | |
645 | endfor | |
646 | return 1 | |
647 | endfunction | |
648 | ||
649 | function! s:syntax() | |
650 | syntax clear | |
651 | syntax region plug1 start=/\%1l/ end=/\%2l/ contains=plugNumber | |
652 | syntax region plug2 start=/\%2l/ end=/\%3l/ contains=plugBracket,plugX | |
653 | syn match plugNumber /[0-9]\+[0-9.]*/ contained | |
654 | syn match plugBracket /[[\]]/ contained | |
655 | syn match plugX /x/ contained | |
656 | syn match plugDash /^-/ | |
657 | syn match plugPlus /^+/ | |
658 | syn match plugStar /^*/ | |
659 | syn match plugMessage /\(^- \)\@<=.*/ | |
660 | syn match plugName /\(^- \)\@<=[^ ]*:/ | |
661 | syn match plugSha /\%(: \)\@<=[0-9a-f]\{4,}$/ | |
662 | syn match plugTag /(tag: [^)]\+)/ | |
663 | syn match plugInstall /\(^+ \)\@<=[^:]*/ | |
664 | syn match plugUpdate /\(^* \)\@<=[^:]*/ | |
665 | syn match plugCommit /^ \X*[0-9a-f]\{7,9} .*/ contains=plugRelDate,plugEdge,plugTag | |
666 | syn match plugEdge /^ \X\+$/ | |
667 | syn match plugEdge /^ \X*/ contained nextgroup=plugSha | |
668 | syn match plugSha /[0-9a-f]\{7,9}/ contained | |
669 | syn match plugRelDate /([^)]*)$/ contained | |
670 | syn match plugNotLoaded /(not loaded)$/ | |
671 | syn match plugError /^x.*/ | |
672 | syn region plugDeleted start=/^\~ .*/ end=/^\ze\S/ | |
673 | syn match plugH2 /^.*:\n-\+$/ | |
674 | syn keyword Function PlugInstall PlugStatus PlugUpdate PlugClean | |
675 | hi def link plug1 Title | |
676 | hi def link plug2 Repeat | |
677 | hi def link plugH2 Type | |
678 | hi def link plugX Exception | |
679 | hi def link plugBracket Structure | |
680 | hi def link plugNumber Number | |
681 | ||
682 | hi def link plugDash Special | |
683 | hi def link plugPlus Constant | |
684 | hi def link plugStar Boolean | |
685 | ||
686 | hi def link plugMessage Function | |
687 | hi def link plugName Label | |
688 | hi def link plugInstall Function | |
689 | hi def link plugUpdate Type | |
690 | ||
691 | hi def link plugError Error | |
692 | hi def link plugDeleted Ignore | |
693 | hi def link plugRelDate Comment | |
694 | hi def link plugEdge PreProc | |
695 | hi def link plugSha Identifier | |
696 | hi def link plugTag Constant | |
697 | ||
698 | hi def link plugNotLoaded Comment | |
699 | endfunction | |
700 | ||
701 | function! s:lpad(str, len) | |
702 | return a:str . repeat(' ', a:len - len(a:str)) | |
703 | endfunction | |
704 | ||
705 | function! s:lines(msg) | |
706 | return split(a:msg, "[\r\n]") | |
707 | endfunction | |
708 | ||
709 | function! s:lastline(msg) | |
710 | return get(s:lines(a:msg), -1, '') | |
711 | endfunction | |
712 | ||
713 | function! s:new_window() | |
714 | execute get(g:, 'plug_window', 'vertical topleft new') | |
715 | endfunction | |
716 | ||
717 | function! s:plug_window_exists() | |
718 | let buflist = tabpagebuflist(s:plug_tab) | |
719 | return !empty(buflist) && index(buflist, s:plug_buf) >= 0 | |
720 | endfunction | |
721 | ||
722 | function! s:switch_in() | |
723 | if !s:plug_window_exists() | |
724 | return 0 | |
725 | endif | |
726 | ||
727 | if winbufnr(0) != s:plug_buf | |
728 | let s:pos = [tabpagenr(), winnr(), winsaveview()] | |
729 | execute 'normal!' s:plug_tab.'gt' | |
730 | let winnr = bufwinnr(s:plug_buf) | |
731 | execute winnr.'wincmd w' | |
732 | call add(s:pos, winsaveview()) | |
733 | else | |
734 | let s:pos = [winsaveview()] | |
735 | endif | |
736 | ||
737 | setlocal modifiable | |
738 | return 1 | |
739 | endfunction | |
740 | ||
741 | function! s:switch_out(...) | |
742 | call winrestview(s:pos[-1]) | |
743 | setlocal nomodifiable | |
744 | if a:0 > 0 | |
745 | execute a:1 | |
746 | endif | |
747 | ||
748 | if len(s:pos) > 1 | |
749 | execute 'normal!' s:pos[0].'gt' | |
750 | execute s:pos[1] 'wincmd w' | |
751 | call winrestview(s:pos[2]) | |
752 | endif | |
753 | endfunction | |
754 | ||
755 | function! s:finish_bindings() | |
756 | nnoremap <silent> <buffer> R :call <SID>retry()<cr> | |
757 | nnoremap <silent> <buffer> D :PlugDiff<cr> | |
758 | nnoremap <silent> <buffer> S :PlugStatus<cr> | |
759 | nnoremap <silent> <buffer> U :call <SID>status_update()<cr> | |
760 | xnoremap <silent> <buffer> U :call <SID>status_update()<cr> | |
761 | nnoremap <silent> <buffer> ]] :silent! call <SID>section('')<cr> | |
762 | nnoremap <silent> <buffer> [[ :silent! call <SID>section('b')<cr> | |
763 | endfunction | |
764 | ||
765 | function! s:prepare(...) | |
766 | if empty(getcwd()) | |
767 | throw 'Invalid current working directory. Cannot proceed.' | |
768 | endif | |
769 | ||
770 | for evar in ['$GIT_DIR', '$GIT_WORK_TREE'] | |
771 | if exists(evar) | |
772 | throw evar.' detected. Cannot proceed.' | |
773 | endif | |
774 | endfor | |
775 | ||
776 | call s:job_abort() | |
777 | if s:switch_in() | |
778 | if b:plug_preview == 1 | |
779 | pc | |
780 | endif | |
781 | enew | |
782 | else | |
783 | call s:new_window() | |
784 | endif | |
785 | ||
786 | nnoremap <silent> <buffer> q :if b:plug_preview==1<bar>pc<bar>endif<bar>bd<cr> | |
787 | if a:0 == 0 | |
788 | call s:finish_bindings() | |
789 | endif | |
790 | let b:plug_preview = -1 | |
791 | let s:plug_tab = tabpagenr() | |
792 | let s:plug_buf = winbufnr(0) | |
793 | call s:assign_name() | |
794 | ||
795 | for k in ['<cr>', 'L', 'o', 'X', 'd', 'dd'] | |
796 | execute 'silent! unmap <buffer>' k | |
797 | endfor | |
798 | setlocal buftype=nofile bufhidden=wipe nobuflisted nolist noswapfile nowrap cursorline modifiable nospell | |
799 | if exists('+colorcolumn') | |
800 | setlocal colorcolumn= | |
801 | endif | |
802 | setf vim-plug | |
803 | if exists('g:syntax_on') | |
804 | call s:syntax() | |
805 | endif | |
806 | endfunction | |
807 | ||
808 | function! s:assign_name() | |
809 | " Assign buffer name | |
810 | let prefix = '[Plugins]' | |
811 | let name = prefix | |
812 | let idx = 2 | |
813 | while bufexists(name) | |
814 | let name = printf('%s (%s)', prefix, idx) | |
815 | let idx = idx + 1 | |
816 | endwhile | |
817 | silent! execute 'f' fnameescape(name) | |
818 | endfunction | |
819 | ||
820 | function! s:chsh(swap) | |
821 | let prev = [&shell, &shellcmdflag, &shellredir] | |
781 | 822 | if !s:is_win && a:swap |
724 | 823 | set shell=sh shellredir=>%s\ 2>&1 |
824 | endif | |
825 | return prev | |
826 | endfunction | |
827 | ||
828 | function! s:bang(cmd, ...) | |
829 | try | |
830 | let [sh, shellcmdflag, shrd] = s:chsh(a:0) | |
831 | " FIXME: Escaping is incomplete. We could use shellescape with eval, | |
832 | " but it won't work on Windows. | |
833 | let cmd = a:0 ? s:with_cd(a:cmd, a:1) : a:cmd | |
834 | if s:is_win | |
795 | 835 | let [batchfile, cmd] = s:batchfile(cmd) |
724 | 836 | endif |
837 | let g:_plug_bang = (s:is_win && has('gui_running') ? 'silent ' : '').'!'.escape(cmd, '#!%') | |
838 | execute "normal! :execute g:_plug_bang\<cr>\<cr>" | |
839 | finally | |
840 | unlet g:_plug_bang | |
841 | let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] | |
842 | if s:is_win | |
843 | call delete(batchfile) | |
844 | endif | |
845 | endtry | |
846 | return v:shell_error ? 'Exit status: ' . v:shell_error : '' | |
847 | endfunction | |
848 | ||
849 | function! s:regress_bar() | |
850 | let bar = substitute(getline(2)[1:-2], '.*\zs=', 'x', '') | |
851 | call s:progress_bar(2, bar, len(bar)) | |
852 | endfunction | |
853 | ||
854 | function! s:is_updated(dir) | |
855 | return !empty(s:system_chomp('git log --pretty=format:"%h" "HEAD...HEAD@{1}"', a:dir)) | |
856 | endfunction | |
857 | ||
858 | function! s:do(pull, force, todo) | |
859 | for [name, spec] in items(a:todo) | |
860 | if !isdirectory(spec.dir) | |
861 | continue | |
862 | endif | |
863 | let installed = has_key(s:update.new, name) | |
864 | let updated = installed ? 0 : | |
865 | \ (a:pull && index(s:update.errors, name) < 0 && s:is_updated(spec.dir)) | |
866 | if a:force || installed || updated | |
867 | execute 'cd' s:esc(spec.dir) | |
868 | call append(3, '- Post-update hook for '. name .' ... ') | |
869 | let error = '' | |
870 | let type = type(spec.do) | |
871 | if type == s:TYPE.string | |
872 | if spec.do[0] == ':' | |
873 | if !get(s:loaded, name, 0) | |
874 | let s:loaded[name] = 1 | |
875 | call s:reorg_rtp() | |
876 | endif | |
877 | call s:load_plugin(spec) | |
878 | try | |
879 | execute spec.do[1:] | |
880 | catch | |
881 | let error = v:exception | |
882 | endtry | |
883 | if !s:plug_window_exists() | |
884 | cd - | |
885 | throw 'Warning: vim-plug was terminated by the post-update hook of '.name | |
886 | endif | |
887 | else | |
888 | let error = s:bang(spec.do) | |
889 | endif | |
890 | elseif type == s:TYPE.funcref | |
891 | try | |
892 | let status = installed ? 'installed' : (updated ? 'updated' : 'unchanged') | |
893 | call spec.do({ 'name': name, 'status': status, 'force': a:force }) | |
894 | catch | |
895 | let error = v:exception | |
896 | endtry | |
897 | else | |
898 | let error = 'Invalid hook type' | |
899 | endif | |
900 | call s:switch_in() | |
901 | call setline(4, empty(error) ? (getline(4) . 'OK') | |
902 | \ : ('x' . getline(4)[1:] . error)) | |
903 | if !empty(error) | |
904 | call add(s:update.errors, name) | |
905 | call s:regress_bar() | |
906 | endif | |
907 | cd - | |
908 | endif | |
909 | endfor | |
910 | endfunction | |
911 | ||
912 | function! s:hash_match(a, b) | |
913 | return stridx(a:a, a:b) == 0 || stridx(a:b, a:a) == 0 | |
914 | endfunction | |
915 | ||
916 | function! s:checkout(spec) | |
917 | let sha = a:spec.commit | |
918 | let output = s:system('git rev-parse HEAD', a:spec.dir) | |
919 | if !v:shell_error && !s:hash_match(sha, s:lines(output)[0]) | |
920 | let output = s:system( | |
921 | \ 'git fetch --depth 999999 && git checkout '.s:esc(sha).' --', a:spec.dir) | |
922 | endif | |
923 | return output | |
924 | endfunction | |
925 | ||
926 | function! s:finish(pull) | |
927 | let new_frozen = len(filter(keys(s:update.new), 'g:plugs[v:val].frozen')) | |
928 | if new_frozen | |
929 | let s = new_frozen > 1 ? 's' : '' | |
930 | call append(3, printf('- Installed %d frozen plugin%s', new_frozen, s)) | |
931 | endif | |
932 | call append(3, '- Finishing ... ') | 4 | |
933 | redraw | |
934 | call plug#helptags() | |
935 | call plug#end() | |
936 | call setline(4, getline(4) . 'Done!') | |
937 | redraw | |
938 | let msgs = [] | |
939 | if !empty(s:update.errors) | |
940 | call add(msgs, "Press 'R' to retry.") | |
941 | endif | |
942 | if a:pull && len(s:update.new) < len(filter(getline(5, '$'), | |
943 | \ "v:val =~ '^- ' && v:val !~# 'Already up.to.date'")) | |
944 | call add(msgs, "Press 'D' to see the updated changes.") | |
945 | endif | |
946 | echo join(msgs, ' ') | |
947 | call s:finish_bindings() | |
948 | endfunction | |
949 | ||
950 | function! s:retry() | |
951 | if empty(s:update.errors) | |
952 | return | |
953 | endif | |
954 | echo | |
955 | call s:update_impl(s:update.pull, s:update.force, | |
956 | \ extend(copy(s:update.errors), [s:update.threads])) | |
957 | endfunction | |
958 | ||
959 | function! s:is_managed(name) | |
960 | return has_key(g:plugs[a:name], 'uri') | |
961 | endfunction | |
962 | ||
963 | function! s:names(...) | |
964 | return sort(filter(keys(g:plugs), 'stridx(v:val, a:1) == 0 && s:is_managed(v:val)')) | |
965 | endfunction | |
966 | ||
967 | function! s:check_ruby() | |
968 | silent! ruby require 'thread'; VIM::command("let g:plug_ruby = '#{RUBY_VERSION}'") | |
969 | if !exists('g:plug_ruby') | |
970 | redraw! | |
971 | return s:warn('echom', 'Warning: Ruby interface is broken') | |
972 | endif | |
973 | let ruby_version = split(g:plug_ruby, '\.') | |
974 | unlet g:plug_ruby | |
975 | return s:version_requirement(ruby_version, [1, 8, 7]) | |
976 | endfunction | |
977 | ||
978 | function! s:update_impl(pull, force, args) abort | |
979 | let sync = index(a:args, '--sync') >= 0 || has('vim_starting') | |
980 | let args = filter(copy(a:args), 'v:val != "--sync"') | |
981 | let threads = (len(args) > 0 && args[-1] =~ '^[1-9][0-9]*$') ? | |
982 | \ remove(args, -1) : get(g:, 'plug_threads', 16) | |
983 | ||
984 | let managed = filter(copy(g:plugs), 's:is_managed(v:key)') | |
985 | let todo = empty(args) ? filter(managed, '!v:val.frozen || !isdirectory(v:val.dir)') : | |
986 | \ filter(managed, 'index(args, v:key) >= 0') | |
987 | ||
988 | if empty(todo) | |
989 | return s:warn('echo', 'No plugin to '. (a:pull ? 'update' : 'install')) | |
990 | endif | |
991 | ||
992 | if !s:is_win && s:git_version_requirement(2, 3) | |
993 | let s:git_terminal_prompt = exists('$GIT_TERMINAL_PROMPT') ? $GIT_TERMINAL_PROMPT : '' | |
994 | let $GIT_TERMINAL_PROMPT = 0 | |
995 | for plug in values(todo) | |
996 | let plug.uri = substitute(plug.uri, | |
997 | \ '^https://git::@github\.com', 'https://github.com', '') | |
998 | endfor | |
999 | endif | |
1000 | ||
1001 | if !isdirectory(g:plug_home) | |
1002 | try | |
1003 | call mkdir(g:plug_home, 'p') | |
1004 | catch | |
1005 | return s:err(printf('Invalid plug directory: %s. '. | |
1006 | \ 'Try to call plug#begin with a valid directory', g:plug_home)) | |
1007 | endtry | |
1008 | endif | |
1009 | ||
1010 | if has('nvim') && !exists('*jobwait') && threads > 1 | |
1011 | call s:warn('echom', '[vim-plug] Update Neovim for parallel installer') | |
1012 | endif | |
1013 | ||
1014 | let use_job = s:nvim || s:vim8 | |
1015 | let python = (has('python') || has('python3')) && !use_job | |
1016 | let ruby = has('ruby') && !use_job && (v:version >= 703 || v:version == 702 && has('patch374')) && !(s:is_win && has('gui_running')) && threads > 1 && s:check_ruby() | |
1017 | ||
1018 | let s:update = { | |
1019 | \ 'start': reltime(), | |
1020 | \ 'all': todo, | |
1021 | \ 'todo': copy(todo), | |
1022 | \ 'errors': [], | |
1023 | \ 'pull': a:pull, | |
1024 | \ 'force': a:force, | |
1025 | \ 'new': {}, | |
1026 | \ 'threads': (python || ruby || use_job) ? min([len(todo), threads]) : 1, | |
1027 | \ 'bar': '', | |
1028 | \ 'fin': 0 | |
1029 | \ } | |
1030 | ||
1031 | call s:prepare(1) | |
1032 | call append(0, ['', '']) | |
1033 | normal! 2G | |
1034 | silent! redraw | |
1035 | ||
1036 | let s:clone_opt = get(g:, 'plug_shallow', 1) ? | |
1037 | \ '--depth 1' . (s:git_version_requirement(1, 7, 10) ? ' --no-single-branch' : '') : '' | |
1038 | ||
806 | 1039 | if has('win32unix') || has('wsl') |
724 | 1040 | let s:clone_opt .= ' -c core.eol=lf -c core.autocrlf=input' |
1041 | endif | |
1042 | ||
1043 | let s:submodule_opt = s:git_version_requirement(2, 8) ? ' --jobs='.threads : '' | |
1044 | ||
1045 | " Python version requirement (>= 2.7) | |
1046 | if python && !has('python3') && !ruby && !use_job && s:update.threads > 1 | |
1047 | redir => pyv | |
1048 | silent python import platform; print platform.python_version() | |
1049 | redir END | |
1050 | let python = s:version_requirement( | |
1051 | \ map(split(split(pyv)[0], '\.'), 'str2nr(v:val)'), [2, 6]) | |
1052 | endif | |
1053 | ||
1054 | if (python || ruby) && s:update.threads > 1 | |
1055 | try | |
1056 | let imd = &imd | |
1057 | if s:mac_gui | |
1058 | set noimd | |
1059 | endif | |
1060 | if ruby | |
1061 | call s:update_ruby() | |
1062 | else | |
1063 | call s:update_python() | |
1064 | endif | |
1065 | catch | |
1066 | let lines = getline(4, '$') | |
1067 | let printed = {} | |
1068 | silent! 4,$d _ | |
1069 | for line in lines | |
1070 | let name = s:extract_name(line, '.', '') | |
1071 | if empty(name) || !has_key(printed, name) | |
1072 | call append('$', line) | |
1073 | if !empty(name) | |
1074 | let printed[name] = 1 | |
1075 | if line[0] == 'x' && index(s:update.errors, name) < 0 | |
1076 | call add(s:update.errors, name) | |
1077 | end | |
1078 | endif | |
1079 | endif | |
1080 | endfor | |
1081 | finally | |
1082 | let &imd = imd | |
1083 | call s:update_finish() | |
1084 | endtry | |
1085 | else | |
1086 | call s:update_vim() | |
1087 | while use_job && sync | |
1088 | sleep 100m | |
1089 | if s:update.fin | |
1090 | break | |
1091 | endif | |
1092 | endwhile | |
1093 | endif | |
1094 | endfunction | |
1095 | ||
1096 | function! s:log4(name, msg) | |
1097 | call setline(4, printf('- %s (%s)', a:msg, a:name)) | |
1098 | redraw | |
1099 | endfunction | |
1100 | ||
1101 | function! s:update_finish() | |
1102 | if exists('s:git_terminal_prompt') | |
1103 | let $GIT_TERMINAL_PROMPT = s:git_terminal_prompt | |
1104 | endif | |
1105 | if s:switch_in() | |
1106 | call append(3, '- Updating ...') | 4 | |
1107 | for [name, spec] in items(filter(copy(s:update.all), 'index(s:update.errors, v:key) < 0 && (s:update.force || s:update.pull || has_key(s:update.new, v:key))')) | |
1108 | let [pos, _] = s:logpos(name) | |
1109 | if !pos | |
1110 | continue | |
1111 | endif | |
1112 | if has_key(spec, 'commit') | |
1113 | call s:log4(name, 'Checking out '.spec.commit) | |
1114 | let out = s:checkout(spec) | |
1115 | elseif has_key(spec, 'tag') | |
1116 | let tag = spec.tag | |
1117 | if tag =~ '\*' | |
795 | 1118 | let tags = s:lines(s:system('git tag --list '.plug#shellescape(tag).' --sort -version:refname 2>&1', spec.dir)) |
724 | 1119 | if !v:shell_error && !empty(tags) |
1120 | let tag = tags[0] | |
1121 | call s:log4(name, printf('Latest tag for %s -> %s', spec.tag, tag)) | |
1122 | call append(3, '') | |
1123 | endif | |
1124 | endif | |
1125 | call s:log4(name, 'Checking out '.tag) | |
1126 | let out = s:system('git checkout -q '.s:esc(tag).' -- 2>&1', spec.dir) | |
1127 | else | |
1128 | let branch = s:esc(get(spec, 'branch', 'master')) | |
1129 | call s:log4(name, 'Merging origin/'.branch) | |
1130 | let out = s:system('git checkout -q '.branch.' -- 2>&1' | |
1131 | \. (has_key(s:update.new, name) ? '' : ('&& git merge --ff-only origin/'.branch.' 2>&1')), spec.dir) | |
1132 | endif | |
1133 | if !v:shell_error && filereadable(spec.dir.'/.gitmodules') && | |
1134 | \ (s:update.force || has_key(s:update.new, name) || s:is_updated(spec.dir)) | |
1135 | call s:log4(name, 'Updating submodules. This may take a while.') | |
1136 | let out .= s:bang('git submodule update --init --recursive'.s:submodule_opt.' 2>&1', spec.dir) | |
1137 | endif | |
1138 | let msg = s:format_message(v:shell_error ? 'x': '-', name, out) | |
1139 | if v:shell_error | |
1140 | call add(s:update.errors, name) | |
1141 | call s:regress_bar() | |
1142 | silent execute pos 'd _' | |
1143 | call append(4, msg) | 4 | |
1144 | elseif !empty(out) | |
1145 | call setline(pos, msg[0]) | |
1146 | endif | |
1147 | redraw | |
1148 | endfor | |
1149 | silent 4 d _ | |
1150 | try | |
1151 | call s:do(s:update.pull, s:update.force, filter(copy(s:update.all), 'index(s:update.errors, v:key) < 0 && has_key(v:val, "do")')) | |
1152 | catch | |
1153 | call s:warn('echom', v:exception) | |
1154 | call s:warn('echo', '') | |
1155 | return | |
1156 | endtry | |
1157 | call s:finish(s:update.pull) | |
1158 | call setline(1, 'Updated. Elapsed time: ' . split(reltimestr(reltime(s:update.start)))[0] . ' sec.') | |
1159 | call s:switch_out('normal! gg') | |
1160 | endif | |
1161 | endfunction | |
1162 | ||
1163 | function! s:job_abort() | |
1164 | if (!s:nvim && !s:vim8) || !exists('s:jobs') | |
1165 | return | |
1166 | endif | |
1167 | ||
1168 | for [name, j] in items(s:jobs) | |
1169 | if s:nvim | |
1170 | silent! call jobstop(j.jobid) | |
1171 | elseif s:vim8 | |
1172 | silent! call job_stop(j.jobid) | |
1173 | endif | |
1174 | if j.new | |
795 | 1175 | call s:system('rm -rf ' . plug#shellescape(g:plugs[name].dir)) |
724 | 1176 | endif |
1177 | endfor | |
1178 | let s:jobs = {} | |
1179 | endfunction | |
1180 | ||
1181 | function! s:last_non_empty_line(lines) | |
1182 | let len = len(a:lines) | |
1183 | for idx in range(len) | |
1184 | let line = a:lines[len-idx-1] | |
1185 | if !empty(line) | |
1186 | return line | |
1187 | endif | |
1188 | endfor | |
1189 | return '' | |
1190 | endfunction | |
1191 | ||
1192 | function! s:job_out_cb(self, data) abort | |
1193 | let self = a:self | |
1194 | let data = remove(self.lines, -1) . a:data | |
1195 | let lines = map(split(data, "\n", 1), 'split(v:val, "\r", 1)[-1]') | |
1196 | call extend(self.lines, lines) | |
1197 | " To reduce the number of buffer updates | |
1198 | let self.tick = get(self, 'tick', -1) + 1 | |
1199 | if !self.running || self.tick % len(s:jobs) == 0 | |
1200 | let bullet = self.running ? (self.new ? '+' : '*') : (self.error ? 'x' : '-') | |
1201 | let result = self.error ? join(self.lines, "\n") : s:last_non_empty_line(self.lines) | |
1202 | call s:log(bullet, self.name, result) | |
1203 | endif | |
1204 | endfunction | |
1205 | ||
1206 | function! s:job_exit_cb(self, data) abort | |
1207 | let a:self.running = 0 | |
1208 | let a:self.error = a:data != 0 | |
1209 | call s:reap(a:self.name) | |
1210 | call s:tick() | |
1211 | endfunction | |
1212 | ||
1213 | function! s:job_cb(fn, job, ch, data) | |
1214 | if !s:plug_window_exists() " plug window closed | |
1215 | return s:job_abort() | |
1216 | endif | |
1217 | call call(a:fn, [a:job, a:data]) | |
1218 | endfunction | |
1219 | ||
1220 | function! s:nvim_cb(job_id, data, event) dict abort | |
1221 | return a:event == 'stdout' ? | |
1222 | \ s:job_cb('s:job_out_cb', self, 0, join(a:data, "\n")) : | |
1223 | \ s:job_cb('s:job_exit_cb', self, 0, a:data) | |
1224 | endfunction | |
1225 | ||
1226 | function! s:spawn(name, cmd, opts) | |
1227 | let job = { 'name': a:name, 'running': 1, 'error': 0, 'lines': [''], | |
1228 | \ 'new': get(a:opts, 'new', 0) } | |
1229 | let s:jobs[a:name] = job | |
795 | 1230 | let cmd = has_key(a:opts, 'dir') ? s:with_cd(a:cmd, a:opts.dir, 0) : a:cmd |
1231 | let argv = s:is_win ? ['cmd', '/s', '/c', '"'.cmd.'"'] : ['sh', '-c', cmd] | |
724 | 1232 | |
1233 | if s:nvim | |
1234 | call extend(job, { | |
1235 | \ 'on_stdout': function('s:nvim_cb'), | |
1236 | \ 'on_exit': function('s:nvim_cb'), | |
1237 | \ }) | |
1238 | let jid = jobstart(argv, job) | |
1239 | if jid > 0 | |
1240 | let job.jobid = jid | |
1241 | else | |
1242 | let job.running = 0 | |
1243 | let job.error = 1 | |
1244 | let job.lines = [jid < 0 ? argv[0].' is not executable' : | |
1245 | \ 'Invalid arguments (or job table is full)'] | |
1246 | endif | |
1247 | elseif s:vim8 | |
1248 | let jid = job_start(s:is_win ? join(argv, ' ') : argv, { | |
1249 | \ 'out_cb': function('s:job_cb', ['s:job_out_cb', job]), | |
1250 | \ 'exit_cb': function('s:job_cb', ['s:job_exit_cb', job]), | |
1251 | \ 'out_mode': 'raw' | |
1252 | \}) | |
1253 | if job_status(jid) == 'run' | |
1254 | let job.jobid = jid | |
1255 | else | |
1256 | let job.running = 0 | |
1257 | let job.error = 1 | |
1258 | let job.lines = ['Failed to start job'] | |
1259 | endif | |
1260 | else | |
1261 | let job.lines = s:lines(call('s:system', [cmd])) | |
1262 | let job.error = v:shell_error != 0 | |
1263 | let job.running = 0 | |
1264 | endif | |
1265 | endfunction | |
1266 | ||
1267 | function! s:reap(name) | |
1268 | let job = s:jobs[a:name] | |
1269 | if job.error | |
1270 | call add(s:update.errors, a:name) | |
1271 | elseif get(job, 'new', 0) | |
1272 | let s:update.new[a:name] = 1 | |
1273 | endif | |
1274 | let s:update.bar .= job.error ? 'x' : '=' | |
1275 | ||
1276 | let bullet = job.error ? 'x' : '-' | |
1277 | let result = job.error ? join(job.lines, "\n") : s:last_non_empty_line(job.lines) | |
1278 | call s:log(bullet, a:name, empty(result) ? 'OK' : result) | |
1279 | call s:bar() | |
1280 | ||
1281 | call remove(s:jobs, a:name) | |
1282 | endfunction | |
1283 | ||
1284 | function! s:bar() | |
1285 | if s:switch_in() | |
1286 | let total = len(s:update.all) | |
1287 | call setline(1, (s:update.pull ? 'Updating' : 'Installing'). | |
1288 | \ ' plugins ('.len(s:update.bar).'/'.total.')') | |
1289 | call s:progress_bar(2, s:update.bar, total) | |
1290 | call s:switch_out() | |
1291 | endif | |
1292 | endfunction | |
1293 | ||
1294 | function! s:logpos(name) | |
1295 | for i in range(4, line('$')) | |
1296 | if getline(i) =~# '^[-+x*] '.a:name.':' | |
1297 | for j in range(i + 1, line('$')) | |
1298 | if getline(j) !~ '^ ' | |
1299 | return [i, j - 1] | |
1300 | endif | |
1301 | endfor | |
1302 | return [i, i] | |
1303 | endif | |
1304 | endfor | |
1305 | return [0, 0] | |
1306 | endfunction | |
1307 | ||
1308 | function! s:log(bullet, name, lines) | |
1309 | if s:switch_in() | |
1310 | let [b, e] = s:logpos(a:name) | |
1311 | if b > 0 | |
1312 | silent execute printf('%d,%d d _', b, e) | |
1313 | if b > winheight('.') | |
1314 | let b = 4 | |
1315 | endif | |
1316 | else | |
1317 | let b = 4 | |
1318 | endif | |
1319 | " FIXME For some reason, nomodifiable is set after :d in vim8 | |
1320 | setlocal modifiable | |
1321 | call append(b - 1, s:format_message(a:bullet, a:name, a:lines)) | |
1322 | call s:switch_out() | |
1323 | endif | |
1324 | endfunction | |
1325 | ||
1326 | function! s:update_vim() | |
1327 | let s:jobs = {} | |
1328 | ||
1329 | call s:bar() | |
1330 | call s:tick() | |
1331 | endfunction | |
1332 | ||
1333 | function! s:tick() | |
1334 | let pull = s:update.pull | |
1335 | let prog = s:progress_opt(s:nvim || s:vim8) | |
1336 | while 1 " Without TCO, Vim stack is bound to explode | |
1337 | if empty(s:update.todo) | |
1338 | if empty(s:jobs) && !s:update.fin | |
1339 | call s:update_finish() | |
1340 | let s:update.fin = 1 | |
1341 | endif | |
1342 | return | |
1343 | endif | |
1344 | ||
1345 | let name = keys(s:update.todo)[0] | |
1346 | let spec = remove(s:update.todo, name) | |
1347 | let new = empty(globpath(spec.dir, '.git', 1)) | |
1348 | ||
1349 | call s:log(new ? '+' : '*', name, pull ? 'Updating ...' : 'Installing ...') | |
1350 | redraw | |
1351 | ||
1352 | let has_tag = has_key(spec, 'tag') | |
1353 | if !new | |
1354 | let [error, _] = s:git_validate(spec, 0) | |
1355 | if empty(error) | |
1356 | if pull | |
1357 | let fetch_opt = (has_tag && !empty(globpath(spec.dir, '.git/shallow'))) ? '--depth 99999999' : '' | |
1358 | call s:spawn(name, printf('git fetch %s %s 2>&1', fetch_opt, prog), { 'dir': spec.dir }) | |
1359 | else | |
1360 | let s:jobs[name] = { 'running': 0, 'lines': ['Already installed'], 'error': 0 } | |
1361 | endif | |
1362 | else | |
1363 | let s:jobs[name] = { 'running': 0, 'lines': s:lines(error), 'error': 1 } | |
1364 | endif | |
1365 | else | |
1366 | call s:spawn(name, | |
1367 | \ printf('git clone %s %s %s %s 2>&1', | |
1368 | \ has_tag ? '' : s:clone_opt, | |
1369 | \ prog, | |
795 | 1370 | \ plug#shellescape(spec.uri, {'script': 0}), |
1371 | \ plug#shellescape(s:trim(spec.dir), {'script': 0})), { 'new': 1 }) | |
724 | 1372 | endif |
1373 | ||
1374 | if !s:jobs[name].running | |
1375 | call s:reap(name) | |
1376 | endif | |
1377 | if len(s:jobs) >= s:update.threads | |
1378 | break | |
1379 | endif | |
1380 | endwhile | |
1381 | endfunction | |
1382 | ||
1383 | function! s:update_python() | |
1384 | let py_exe = has('python') ? 'python' : 'python3' | |
1385 | execute py_exe "<< EOF" | |
1386 | import datetime | |
1387 | import functools | |
1388 | import os | |
1389 | try: | |
1390 | import queue | |
1391 | except ImportError: | |
1392 | import Queue as queue | |
1393 | import random | |
1394 | import re | |
1395 | import shutil | |
1396 | import signal | |
1397 | import subprocess | |
1398 | import tempfile | |
1399 | import threading as thr | |
1400 | import time | |
1401 | import traceback | |
1402 | import vim | |
1403 | ||
1404 | G_NVIM = vim.eval("has('nvim')") == '1' | |
1405 | G_PULL = vim.eval('s:update.pull') == '1' | |
1406 | G_RETRIES = int(vim.eval('get(g:, "plug_retries", 2)')) + 1 | |
1407 | G_TIMEOUT = int(vim.eval('get(g:, "plug_timeout", 60)')) | |
1408 | G_CLONE_OPT = vim.eval('s:clone_opt') | |
1409 | G_PROGRESS = vim.eval('s:progress_opt(1)') | |
1410 | G_LOG_PROB = 1.0 / int(vim.eval('s:update.threads')) | |
1411 | G_STOP = thr.Event() | |
1412 | G_IS_WIN = vim.eval('s:is_win') == '1' | |
1413 | ||
1414 | class PlugError(Exception): | |
1415 | def __init__(self, msg): | |
1416 | self.msg = msg | |
1417 | class CmdTimedOut(PlugError): | |
1418 | pass | |
1419 | class CmdFailed(PlugError): | |
1420 | pass | |
1421 | class InvalidURI(PlugError): | |
1422 | pass | |
1423 | class Action(object): | |
1424 | INSTALL, UPDATE, ERROR, DONE = ['+', '*', 'x', '-'] | |
1425 | ||
1426 | class Buffer(object): | |
1427 | def __init__(self, lock, num_plugs, is_pull): | |
1428 | self.bar = '' | |
1429 | self.event = 'Updating' if is_pull else 'Installing' | |
1430 | self.lock = lock | |
1431 | self.maxy = int(vim.eval('winheight(".")')) | |
1432 | self.num_plugs = num_plugs | |
1433 | ||
1434 | def __where(self, name): | |
1435 | """ Find first line with name in current buffer. Return line num. """ | |
1436 | found, lnum = False, 0 | |
1437 | matcher = re.compile('^[-+x*] {0}:'.format(name)) | |
1438 | for line in vim.current.buffer: | |
1439 | if matcher.search(line) is not None: | |
1440 | found = True | |
1441 | break | |
1442 | lnum += 1 | |
1443 | ||
1444 | if not found: | |
1445 | lnum = -1 | |
1446 | return lnum | |
1447 | ||
1448 | def header(self): | |
1449 | curbuf = vim.current.buffer | |
1450 | curbuf[0] = self.event + ' plugins ({0}/{1})'.format(len(self.bar), self.num_plugs) | |
1451 | ||
1452 | num_spaces = self.num_plugs - len(self.bar) | |
1453 | curbuf[1] = '[{0}{1}]'.format(self.bar, num_spaces * ' ') | |
1454 | ||
1455 | with self.lock: | |
1456 | vim.command('normal! 2G') | |
1457 | vim.command('redraw') | |
1458 | ||
1459 | def write(self, action, name, lines): | |
1460 | first, rest = lines[0], lines[1:] | |
1461 | msg = ['{0} {1}{2}{3}'.format(action, name, ': ' if first else '', first)] | |
1462 | msg.extend([' ' + line for line in rest]) | |
1463 | ||
1464 | try: | |
1465 | if action == Action.ERROR: | |
1466 | self.bar += 'x' | |
1467 | vim.command("call add(s:update.errors, '{0}')".format(name)) | |
1468 | elif action == Action.DONE: | |
1469 | self.bar += '=' | |
1470 | ||
1471 | curbuf = vim.current.buffer | |
1472 | lnum = self.__where(name) | |
1473 | if lnum != -1: # Found matching line num | |
1474 | del curbuf[lnum] | |
1475 | if lnum > self.maxy and action in set([Action.INSTALL, Action.UPDATE]): | |
1476 | lnum = 3 | |
1477 | else: | |
1478 | lnum = 3 | |
1479 | curbuf.append(msg, lnum) | |
1480 | ||
1481 | self.header() | |
1482 | except vim.error: | |
1483 | pass | |
1484 | ||
1485 | class Command(object): | |
1486 | CD = 'cd /d' if G_IS_WIN else 'cd' | |
1487 | ||
1488 | def __init__(self, cmd, cmd_dir=None, timeout=60, cb=None, clean=None): | |
1489 | self.cmd = cmd | |
1490 | if cmd_dir: | |
1491 | self.cmd = '{0} {1} && {2}'.format(Command.CD, cmd_dir, self.cmd) | |
1492 | self.timeout = timeout | |
1493 | self.callback = cb if cb else (lambda msg: None) | |
1494 | self.clean = clean if clean else (lambda: None) | |
1495 | self.proc = None | |
1496 | ||
1497 | @property | |
1498 | def alive(self): | |
1499 | """ Returns true only if command still running. """ | |
1500 | return self.proc and self.proc.poll() is None | |
1501 | ||
1502 | def execute(self, ntries=3): | |
1503 | """ Execute the command with ntries if CmdTimedOut. | |
1504 | Returns the output of the command if no Exception. | |
1505 | """ | |
1506 | attempt, finished, limit = 0, False, self.timeout | |
1507 | ||
1508 | while not finished: | |
1509 | try: | |
1510 | attempt += 1 | |
1511 | result = self.try_command() | |
1512 | finished = True | |
1513 | return result | |
1514 | except CmdTimedOut: | |
1515 | if attempt != ntries: | |
1516 | self.notify_retry() | |
1517 | self.timeout += limit | |
1518 | else: | |
1519 | raise | |
1520 | ||
1521 | def notify_retry(self): | |
1522 | """ Retry required for command, notify user. """ | |
1523 | for count in range(3, 0, -1): | |
1524 | if G_STOP.is_set(): | |
1525 | raise KeyboardInterrupt | |
1526 | msg = 'Timeout. Will retry in {0} second{1} ...'.format( | |
1527 | count, 's' if count != 1 else '') | |
1528 | self.callback([msg]) | |
1529 | time.sleep(1) | |
1530 | self.callback(['Retrying ...']) | |
1531 | ||
1532 | def try_command(self): | |
1533 | """ Execute a cmd & poll for callback. Returns list of output. | |
1534 | Raises CmdFailed -> return code for Popen isn't 0 | |
1535 | Raises CmdTimedOut -> command exceeded timeout without new output | |
1536 | """ | |
1537 | first_line = True | |
1538 | ||
1539 | try: | |
1540 | tfile = tempfile.NamedTemporaryFile(mode='w+b') | |
1541 | preexec_fn = not G_IS_WIN and os.setsid or None | |
1542 | self.proc = subprocess.Popen(self.cmd, stdout=tfile, | |
1543 | stderr=subprocess.STDOUT, | |
1544 | stdin=subprocess.PIPE, shell=True, | |
1545 | preexec_fn=preexec_fn) | |
1546 | thrd = thr.Thread(target=(lambda proc: proc.wait()), args=(self.proc,)) | |
1547 | thrd.start() | |
1548 | ||
1549 | thread_not_started = True | |
1550 | while thread_not_started: | |
1551 | try: | |
1552 | thrd.join(0.1) | |
1553 | thread_not_started = False | |
1554 | except RuntimeError: | |
1555 | pass | |
1556 | ||
1557 | while self.alive: | |
1558 | if G_STOP.is_set(): | |
1559 | raise KeyboardInterrupt | |
1560 | ||
1561 | if first_line or random.random() < G_LOG_PROB: | |
1562 | first_line = False | |
1563 | line = '' if G_IS_WIN else nonblock_read(tfile.name) | |
1564 | if line: | |
1565 | self.callback([line]) | |
1566 | ||
1567 | time_diff = time.time() - os.path.getmtime(tfile.name) | |
1568 | if time_diff > self.timeout: | |
1569 | raise CmdTimedOut(['Timeout!']) | |
1570 | ||
1571 | thrd.join(0.5) | |
1572 | ||
1573 | tfile.seek(0) | |
1574 | result = [line.decode('utf-8', 'replace').rstrip() for line in tfile] | |
1575 | ||
1576 | if self.proc.returncode != 0: | |
1577 | raise CmdFailed([''] + result) | |
1578 | ||
1579 | return result | |
1580 | except: | |
1581 | self.terminate() | |
1582 | raise | |
1583 | ||
1584 | def terminate(self): | |
1585 | """ Terminate process and cleanup. """ | |
1586 | if self.alive: | |
1587 | if G_IS_WIN: | |
1588 | os.kill(self.proc.pid, signal.SIGINT) | |
1589 | else: | |
1590 | os.killpg(self.proc.pid, signal.SIGTERM) | |
1591 | self.clean() | |
1592 | ||
1593 | class Plugin(object): | |
1594 | def __init__(self, name, args, buf_q, lock): | |
1595 | self.name = name | |
1596 | self.args = args | |
1597 | self.buf_q = buf_q | |
1598 | self.lock = lock | |
1599 | self.tag = args.get('tag', 0) | |
1600 | ||
1601 | def manage(self): | |
1602 | try: | |
1603 | if os.path.exists(self.args['dir']): | |
1604 | self.update() | |
1605 | else: | |
1606 | self.install() | |
1607 | with self.lock: | |
1608 | thread_vim_command("let s:update.new['{0}'] = 1".format(self.name)) | |
1609 | except PlugError as exc: | |
1610 | self.write(Action.ERROR, self.name, exc.msg) | |
1611 | except KeyboardInterrupt: | |
1612 | G_STOP.set() | |
1613 | self.write(Action.ERROR, self.name, ['Interrupted!']) | |
1614 | except: | |
1615 | # Any exception except those above print stack trace | |
1616 | msg = 'Trace:\n{0}'.format(traceback.format_exc().rstrip()) | |
1617 | self.write(Action.ERROR, self.name, msg.split('\n')) | |
1618 | raise | |
1619 | ||
1620 | def install(self): | |
1621 | target = self.args['dir'] | |
1622 | if target[-1] == '\\': | |
1623 | target = target[0:-1] | |
1624 | ||
1625 | def clean(target): | |
1626 | def _clean(): | |
1627 | try: | |
1628 | shutil.rmtree(target) | |
1629 | except OSError: | |
1630 | pass | |
1631 | return _clean | |
1632 | ||
1633 | self.write(Action.INSTALL, self.name, ['Installing ...']) | |
1634 | callback = functools.partial(self.write, Action.INSTALL, self.name) | |
1635 | cmd = 'git clone {0} {1} {2} {3} 2>&1'.format( | |
1636 | '' if self.tag else G_CLONE_OPT, G_PROGRESS, self.args['uri'], | |
1637 | esc(target)) | |
1638 | com = Command(cmd, None, G_TIMEOUT, callback, clean(target)) | |
1639 | result = com.execute(G_RETRIES) | |
1640 | self.write(Action.DONE, self.name, result[-1:]) | |
1641 | ||
1642 | def repo_uri(self): | |
1643 | cmd = 'git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url' | |
1644 | command = Command(cmd, self.args['dir'], G_TIMEOUT,) | |
1645 | result = command.execute(G_RETRIES) | |
1646 | return result[-1] | |
1647 | ||
1648 | def update(self): | |
1649 | actual_uri = self.repo_uri() | |
1650 | expect_uri = self.args['uri'] | |
1651 | regex = re.compile(r'^(?:\w+://)?(?:[^@/]*@)?([^:/]*(?::[0-9]*)?)[:/](.*?)(?:\.git)?/?$') | |
1652 | ma = regex.match(actual_uri) | |
1653 | mb = regex.match(expect_uri) | |
1654 | if ma is None or mb is None or ma.groups() != mb.groups(): | |
1655 | msg = ['', | |
1656 | 'Invalid URI: {0}'.format(actual_uri), | |
1657 | 'Expected {0}'.format(expect_uri), | |
1658 | 'PlugClean required.'] | |
1659 | raise InvalidURI(msg) | |
1660 | ||
1661 | if G_PULL: | |
1662 | self.write(Action.UPDATE, self.name, ['Updating ...']) | |
1663 | callback = functools.partial(self.write, Action.UPDATE, self.name) | |
1664 | fetch_opt = '--depth 99999999' if self.tag and os.path.isfile(os.path.join(self.args['dir'], '.git/shallow')) else '' | |
1665 | cmd = 'git fetch {0} {1} 2>&1'.format(fetch_opt, G_PROGRESS) | |
1666 | com = Command(cmd, self.args['dir'], G_TIMEOUT, callback) | |
1667 | result = com.execute(G_RETRIES) | |
1668 | self.write(Action.DONE, self.name, result[-1:]) | |
1669 | else: | |
1670 | self.write(Action.DONE, self.name, ['Already installed']) | |
1671 | ||
1672 | def write(self, action, name, msg): | |
1673 | self.buf_q.put((action, name, msg)) | |
1674 | ||
1675 | class PlugThread(thr.Thread): | |
1676 | def __init__(self, tname, args): | |
1677 | super(PlugThread, self).__init__() | |
1678 | self.tname = tname | |
1679 | self.args = args | |
1680 | ||
1681 | def run(self): | |
1682 | thr.current_thread().name = self.tname | |
1683 | buf_q, work_q, lock = self.args | |
1684 | ||
1685 | try: | |
1686 | while not G_STOP.is_set(): | |
1687 | name, args = work_q.get_nowait() | |
1688 | plug = Plugin(name, args, buf_q, lock) | |
1689 | plug.manage() | |
1690 | work_q.task_done() | |
1691 | except queue.Empty: | |
1692 | pass | |
1693 | ||
1694 | class RefreshThread(thr.Thread): | |
1695 | def __init__(self, lock): | |
1696 | super(RefreshThread, self).__init__() | |
1697 | self.lock = lock | |
1698 | self.running = True | |
1699 | ||
1700 | def run(self): | |
1701 | while self.running: | |
1702 | with self.lock: | |
1703 | thread_vim_command('noautocmd normal! a') | |
1704 | time.sleep(0.33) | |
1705 | ||
1706 | def stop(self): | |
1707 | self.running = False | |
1708 | ||
1709 | if G_NVIM: | |
1710 | def thread_vim_command(cmd): | |
1711 | vim.session.threadsafe_call(lambda: vim.command(cmd)) | |
1712 | else: | |
1713 | def thread_vim_command(cmd): | |
1714 | vim.command(cmd) | |
1715 | ||
1716 | def esc(name): | |
1717 | return '"' + name.replace('"', '\"') + '"' | |
1718 | ||
1719 | def nonblock_read(fname): | |
1720 | """ Read a file with nonblock flag. Return the last line. """ | |
1721 | fread = os.open(fname, os.O_RDONLY | os.O_NONBLOCK) | |
1722 | buf = os.read(fread, 100000).decode('utf-8', 'replace') | |
1723 | os.close(fread) | |
1724 | ||
1725 | line = buf.rstrip('\r\n') | |
1726 | left = max(line.rfind('\r'), line.rfind('\n')) | |
1727 | if left != -1: | |
1728 | left += 1 | |
1729 | line = line[left:] | |
1730 | ||
1731 | return line | |
1732 | ||
1733 | def main(): | |
1734 | thr.current_thread().name = 'main' | |
1735 | nthreads = int(vim.eval('s:update.threads')) | |
1736 | plugs = vim.eval('s:update.todo') | |
1737 | mac_gui = vim.eval('s:mac_gui') == '1' | |
1738 | ||
1739 | lock = thr.Lock() | |
1740 | buf = Buffer(lock, len(plugs), G_PULL) | |
1741 | buf_q, work_q = queue.Queue(), queue.Queue() | |
1742 | for work in plugs.items(): | |
1743 | work_q.put(work) | |
1744 | ||
1745 | start_cnt = thr.active_count() | |
1746 | for num in range(nthreads): | |
1747 | tname = 'PlugT-{0:02}'.format(num) | |
1748 | thread = PlugThread(tname, (buf_q, work_q, lock)) | |
1749 | thread.start() | |
1750 | if mac_gui: | |
1751 | rthread = RefreshThread(lock) | |
1752 | rthread.start() | |
1753 | ||
1754 | while not buf_q.empty() or thr.active_count() != start_cnt: | |
1755 | try: | |
1756 | action, name, msg = buf_q.get(True, 0.25) | |
1757 | buf.write(action, name, ['OK'] if not msg else msg) | |
1758 | buf_q.task_done() | |
1759 | except queue.Empty: | |
1760 | pass | |
1761 | except KeyboardInterrupt: | |
1762 | G_STOP.set() | |
1763 | ||
1764 | if mac_gui: | |
1765 | rthread.stop() | |
1766 | rthread.join() | |
1767 | ||
1768 | main() | |
1769 | EOF | |
1770 | endfunction | |
1771 | ||
1772 | function! s:update_ruby() | |
1773 | ruby << EOF | |
1774 | module PlugStream | |
1775 | SEP = ["\r", "\n", nil] | |
1776 | def get_line | |
1777 | buffer = '' | |
1778 | loop do | |
1779 | char = readchar rescue return | |
1780 | if SEP.include? char.chr | |
1781 | buffer << $/ | |
1782 | break | |
1783 | else | |
1784 | buffer << char | |
1785 | end | |
1786 | end | |
1787 | buffer | |
1788 | end | |
1789 | end unless defined?(PlugStream) | |
1790 | ||
1791 | def esc arg | |
1792 | %["#{arg.gsub('"', '\"')}"] | |
1793 | end | |
1794 | ||
1795 | def killall pid | |
1796 | pids = [pid] | |
1797 | if /mswin|mingw|bccwin/ =~ RUBY_PLATFORM | |
1798 | pids.each { |pid| Process.kill 'INT', pid.to_i rescue nil } | |
1799 | else | |
1800 | unless `which pgrep 2> /dev/null`.empty? | |
1801 | children = pids | |
1802 | until children.empty? | |
1803 | children = children.map { |pid| | |
1804 | `pgrep -P #{pid}`.lines.map { |l| l.chomp } | |
1805 | }.flatten | |
1806 | pids += children | |
1807 | end | |
1808 | end | |
1809 | pids.each { |pid| Process.kill 'TERM', pid.to_i rescue nil } | |
1810 | end | |
1811 | end | |
1812 | ||
1813 | def compare_git_uri a, b | |
1814 | regex = %r{^(?:\w+://)?(?:[^@/]*@)?([^:/]*(?::[0-9]*)?)[:/](.*?)(?:\.git)?/?$} | |
1815 | regex.match(a).to_a.drop(1) == regex.match(b).to_a.drop(1) | |
1816 | end | |
1817 | ||
1818 | require 'thread' | |
1819 | require 'fileutils' | |
1820 | require 'timeout' | |
1821 | running = true | |
1822 | iswin = VIM::evaluate('s:is_win').to_i == 1 | |
1823 | pull = VIM::evaluate('s:update.pull').to_i == 1 | |
1824 | base = VIM::evaluate('g:plug_home') | |
1825 | all = VIM::evaluate('s:update.todo') | |
1826 | limit = VIM::evaluate('get(g:, "plug_timeout", 60)') | |
1827 | tries = VIM::evaluate('get(g:, "plug_retries", 2)') + 1 | |
1828 | nthr = VIM::evaluate('s:update.threads').to_i | |
1829 | maxy = VIM::evaluate('winheight(".")').to_i | |
1830 | vim7 = VIM::evaluate('v:version').to_i <= 703 && RUBY_PLATFORM =~ /darwin/ | |
1831 | cd = iswin ? 'cd /d' : 'cd' | |
1832 | tot = VIM::evaluate('len(s:update.todo)') || 0 | |
1833 | bar = '' | |
1834 | skip = 'Already installed' | |
1835 | mtx = Mutex.new | |
1836 | take1 = proc { mtx.synchronize { running && all.shift } } | |
1837 | logh = proc { | |
1838 | cnt = bar.length | |
1839 | $curbuf[1] = "#{pull ? 'Updating' : 'Installing'} plugins (#{cnt}/#{tot})" | |
1840 | $curbuf[2] = '[' + bar.ljust(tot) + ']' | |
1841 | VIM::command('normal! 2G') | |
1842 | VIM::command('redraw') | |
1843 | } | |
1844 | where = proc { |name| (1..($curbuf.length)).find { |l| $curbuf[l] =~ /^[-+x*] #{name}:/ } } | |
1845 | log = proc { |name, result, type| | |
1846 | mtx.synchronize do | |
1847 | ing = ![true, false].include?(type) | |
1848 | bar += type ? '=' : 'x' unless ing | |
1849 | b = case type | |
1850 | when :install then '+' when :update then '*' | |
1851 | when true, nil then '-' else | |
1852 | VIM::command("call add(s:update.errors, '#{name}')") | |
1853 | 'x' | |
1854 | end | |
1855 | result = | |
1856 | if type || type.nil? | |
1857 | ["#{b} #{name}: #{result.lines.to_a.last || 'OK'}"] | |
1858 | elsif result =~ /^Interrupted|^Timeout/ | |
1859 | ["#{b} #{name}: #{result}"] | |
1860 | else | |
1861 | ["#{b} #{name}"] + result.lines.map { |l| " " << l } | |
1862 | end | |
1863 | if lnum = where.call(name) | |
1864 | $curbuf.delete lnum | |
1865 | lnum = 4 if ing && lnum > maxy | |
1866 | end | |
1867 | result.each_with_index do |line, offset| | |
1868 | $curbuf.append((lnum || 4) - 1 + offset, line.gsub(/\e\[./, '').chomp) | |
1869 | end | |
1870 | logh.call | |
1871 | end | |
1872 | } | |
1873 | bt = proc { |cmd, name, type, cleanup| | |
1874 | tried = timeout = 0 | |
1875 | begin | |
1876 | tried += 1 | |
1877 | timeout += limit | |
1878 | fd = nil | |
1879 | data = '' | |
1880 | if iswin | |
1881 | Timeout::timeout(timeout) do | |
1882 | tmp = VIM::evaluate('tempname()') | |
1883 | system("(#{cmd}) > #{tmp}") | |
1884 | data = File.read(tmp).chomp | |
1885 | File.unlink tmp rescue nil | |
1886 | end | |
1887 | else | |
1888 | fd = IO.popen(cmd).extend(PlugStream) | |
1889 | first_line = true | |
1890 | log_prob = 1.0 / nthr | |
1891 | while line = Timeout::timeout(timeout) { fd.get_line } | |
1892 | data << line | |
1893 | log.call name, line.chomp, type if name && (first_line || rand < log_prob) | |
1894 | first_line = false | |
1895 | end | |
1896 | fd.close | |
1897 | end | |
1898 | [$? == 0, data.chomp] | |
1899 | rescue Timeout::Error, Interrupt => e | |
1900 | if fd && !fd.closed? | |
1901 | killall fd.pid | |
1902 | fd.close | |
1903 | end | |
1904 | cleanup.call if cleanup | |
1905 | if e.is_a?(Timeout::Error) && tried < tries | |
1906 | 3.downto(1) do |countdown| | |
1907 | s = countdown > 1 ? 's' : '' | |
1908 | log.call name, "Timeout. Will retry in #{countdown} second#{s} ...", type | |
1909 | sleep 1 | |
1910 | end | |
1911 | log.call name, 'Retrying ...', type | |
1912 | retry | |
1913 | end | |
1914 | [false, e.is_a?(Interrupt) ? "Interrupted!" : "Timeout!"] | |
1915 | end | |
1916 | } | |
1917 | main = Thread.current | |
1918 | threads = [] | |
1919 | watcher = Thread.new { | |
1920 | if vim7 | |
1921 | while VIM::evaluate('getchar(1)') | |
1922 | sleep 0.1 | |
1923 | end | |
1924 | else | |
1925 | require 'io/console' # >= Ruby 1.9 | |
1926 | nil until IO.console.getch == 3.chr | |
1927 | end | |
1928 | mtx.synchronize do | |
1929 | running = false | |
1930 | threads.each { |t| t.raise Interrupt } unless vim7 | |
1931 | end | |
1932 | threads.each { |t| t.join rescue nil } | |
1933 | main.kill | |
1934 | } | |
1935 | refresh = Thread.new { | |
1936 | while true | |
1937 | mtx.synchronize do | |
1938 | break unless running | |
1939 | VIM::command('noautocmd normal! a') | |
1940 | end | |
1941 | sleep 0.2 | |
1942 | end | |
1943 | } if VIM::evaluate('s:mac_gui') == 1 | |
1944 | ||
1945 | clone_opt = VIM::evaluate('s:clone_opt') | |
1946 | progress = VIM::evaluate('s:progress_opt(1)') | |
1947 | nthr.times do | |
1948 | mtx.synchronize do | |
1949 | threads << Thread.new { | |
1950 | while pair = take1.call | |
1951 | name = pair.first | |
1952 | dir, uri, tag = pair.last.values_at *%w[dir uri tag] | |
1953 | exists = File.directory? dir | |
1954 | ok, result = | |
1955 | if exists | |
1956 | chdir = "#{cd} #{iswin ? dir : esc(dir)}" | |
1957 | ret, data = bt.call "#{chdir} && git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url", nil, nil, nil | |
1958 | current_uri = data.lines.to_a.last | |
1959 | if !ret | |
1960 | if data =~ /^Interrupted|^Timeout/ | |
1961 | [false, data] | |
1962 | else | |
1963 | [false, [data.chomp, "PlugClean required."].join($/)] | |
1964 | end | |
1965 | elsif !compare_git_uri(current_uri, uri) | |
1966 | [false, ["Invalid URI: #{current_uri}", | |
1967 | "Expected: #{uri}", | |
1968 | "PlugClean required."].join($/)] | |
1969 | else | |
1970 | if pull | |
1971 | log.call name, 'Updating ...', :update | |
1972 | fetch_opt = (tag && File.exist?(File.join(dir, '.git/shallow'))) ? '--depth 99999999' : '' | |
1973 | bt.call "#{chdir} && git fetch #{fetch_opt} #{progress} 2>&1", name, :update, nil | |
1974 | else | |
1975 | [true, skip] | |
1976 | end | |
1977 | end | |
1978 | else | |
1979 | d = esc dir.sub(%r{[\\/]+$}, '') | |
1980 | log.call name, 'Installing ...', :install | |
1981 | bt.call "git clone #{clone_opt unless tag} #{progress} #{uri} #{d} 2>&1", name, :install, proc { | |
1982 | FileUtils.rm_rf dir | |
1983 | } | |
1984 | end | |
1985 | mtx.synchronize { VIM::command("let s:update.new['#{name}'] = 1") } if !exists && ok | |
1986 | log.call name, result, ok | |
1987 | end | |
1988 | } if running | |
1989 | end | |
1990 | end | |
1991 | threads.each { |t| t.join rescue nil } | |
1992 | logh.call | |
1993 | refresh.kill if refresh | |
1994 | watcher.kill | |
1995 | EOF | |
1996 | endfunction | |
1997 | ||
795 | 1998 | function! s:shellesc_cmd(arg, script) |
1999 | let escaped = substitute('"'.a:arg.'"', '[&|<>()@^!"]', '^&', 'g') | |
2000 | return substitute(escaped, '%', (a:script ? '%' : '^') . '&', 'g') | |
2001 | endfunction | |
2002 | ||
2003 | function! s:shellesc_ps1(arg) | |
2004 | return "'".substitute(escape(a:arg, '\"'), "'", "''", 'g')."'" | |
724 | 2005 | endfunction |
2006 | ||
795 | 2007 | function! plug#shellescape(arg, ...) |
2008 | let opts = a:0 > 0 && type(a:1) == s:TYPE.dict ? a:1 : {} | |
2009 | let shell = get(opts, 'shell', s:is_win ? 'cmd.exe' : 'sh') | |
2010 | let script = get(opts, 'script', 1) | |
2011 | if shell =~# 'cmd\.exe$' | |
2012 | return s:shellesc_cmd(a:arg, script) | |
2013 | elseif shell =~# 'powershell\.exe$' || shell =~# 'pwsh$' | |
2014 | return s:shellesc_ps1(a:arg) | |
724 | 2015 | endif |
2016 | return shellescape(a:arg) | |
2017 | endfunction | |
2018 | ||
2019 | function! s:glob_dir(path) | |
2020 | return map(filter(s:glob(a:path, '**'), 'isdirectory(v:val)'), 's:dirpath(v:val)') | |
2021 | endfunction | |
2022 | ||
2023 | function! s:progress_bar(line, bar, total) | |
2024 | call setline(a:line, '[' . s:lpad(a:bar, a:total) . ']') | |
2025 | endfunction | |
2026 | ||
2027 | function! s:compare_git_uri(a, b) | |
2028 | " See `git help clone' | |
2029 | " https:// [user@] github.com[:port] / junegunn/vim-plug [.git] | |
2030 | " [git@] github.com[:port] : junegunn/vim-plug [.git] | |
2031 | " file:// / junegunn/vim-plug [/] | |
2032 | " / junegunn/vim-plug [/] | |
2033 | let pat = '^\%(\w\+://\)\='.'\%([^@/]*@\)\='.'\([^:/]*\%(:[0-9]*\)\=\)'.'[:/]'.'\(.\{-}\)'.'\%(\.git\)\=/\?$' | |
2034 | let ma = matchlist(a:a, pat) | |
2035 | let mb = matchlist(a:b, pat) | |
2036 | return ma[1:2] ==# mb[1:2] | |
2037 | endfunction | |
2038 | ||
2039 | function! s:format_message(bullet, name, message) | |
2040 | if a:bullet != 'x' | |
2041 | return [printf('%s %s: %s', a:bullet, a:name, s:lastline(a:message))] | |
2042 | else | |
2043 | let lines = map(s:lines(a:message), '" ".v:val') | |
2044 | return extend([printf('x %s:', a:name)], lines) | |
2045 | endif | |
2046 | endfunction | |
2047 | ||
795 | 2048 | function! s:with_cd(cmd, dir, ...) |
2049 | let script = a:0 > 0 ? a:1 : 1 | |
2050 | return printf('cd%s %s && %s', s:is_win ? ' /d' : '', plug#shellescape(a:dir, {'script': script}), a:cmd) | |
724 | 2051 | endfunction |
2052 | ||
2053 | function! s:system(cmd, ...) | |
2054 | try | |
2055 | let [sh, shellcmdflag, shrd] = s:chsh(1) | |
2056 | let cmd = a:0 > 0 ? s:with_cd(a:cmd, a:1) : a:cmd | |
2057 | if s:is_win | |
795 | 2058 | let [batchfile, cmd] = s:batchfile(cmd) |
724 | 2059 | endif |
773 | 2060 | return system(cmd) |
724 | 2061 | finally |
2062 | let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] | |
2063 | if s:is_win | |
2064 | call delete(batchfile) | |
2065 | endif | |
2066 | endtry | |
2067 | endfunction | |
2068 | ||
2069 | function! s:system_chomp(...) | |
2070 | let ret = call('s:system', a:000) | |
2071 | return v:shell_error ? '' : substitute(ret, '\n$', '', '') | |
2072 | endfunction | |
2073 | ||
2074 | function! s:git_validate(spec, check_branch) | |
2075 | let err = '' | |
2076 | if isdirectory(a:spec.dir) | |
2077 | let result = s:lines(s:system('git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url', a:spec.dir)) | |
2078 | let remote = result[-1] | |
2079 | if v:shell_error | |
2080 | let err = join([remote, 'PlugClean required.'], "\n") | |
2081 | elseif !s:compare_git_uri(remote, a:spec.uri) | |
2082 | let err = join(['Invalid URI: '.remote, | |
2083 | \ 'Expected: '.a:spec.uri, | |
2084 | \ 'PlugClean required.'], "\n") | |
2085 | elseif a:check_branch && has_key(a:spec, 'commit') | |
2086 | let result = s:lines(s:system('git rev-parse HEAD 2>&1', a:spec.dir)) | |
2087 | let sha = result[-1] | |
2088 | if v:shell_error | |
2089 | let err = join(add(result, 'PlugClean required.'), "\n") | |
2090 | elseif !s:hash_match(sha, a:spec.commit) | |
2091 | let err = join([printf('Invalid HEAD (expected: %s, actual: %s)', | |
2092 | \ a:spec.commit[:6], sha[:6]), | |
2093 | \ 'PlugUpdate required.'], "\n") | |
2094 | endif | |
2095 | elseif a:check_branch | |
2096 | let branch = result[0] | |
2097 | " Check tag | |
2098 | if has_key(a:spec, 'tag') | |
2099 | let tag = s:system_chomp('git describe --exact-match --tags HEAD 2>&1', a:spec.dir) | |
2100 | if a:spec.tag !=# tag && a:spec.tag !~ '\*' | |
2101 | let err = printf('Invalid tag: %s (expected: %s). Try PlugUpdate.', | |
2102 | \ (empty(tag) ? 'N/A' : tag), a:spec.tag) | |
2103 | endif | |
2104 | " Check branch | |
2105 | elseif a:spec.branch !=# branch | |
2106 | let err = printf('Invalid branch: %s (expected: %s). Try PlugUpdate.', | |
2107 | \ branch, a:spec.branch) | |
2108 | endif | |
2109 | if empty(err) | |
2110 | let [ahead, behind] = split(s:lastline(s:system(printf( | |
2111 | \ 'git rev-list --count --left-right HEAD...origin/%s', | |
2112 | \ a:spec.branch), a:spec.dir)), '\t') | |
2113 | if !v:shell_error && ahead | |
2114 | if behind | |
2115 | " Only mention PlugClean if diverged, otherwise it's likely to be | |
2116 | " pushable (and probably not that messed up). | |
2117 | let err = printf( | |
2118 | \ "Diverged from origin/%s (%d commit(s) ahead and %d commit(s) behind!\n" | |
2119 | \ .'Backup local changes and run PlugClean and PlugUpdate to reinstall it.', a:spec.branch, ahead, behind) | |
2120 | else | |
2121 | let err = printf("Ahead of origin/%s by %d commit(s).\n" | |
2122 | \ .'Cannot update until local changes are pushed.', | |
2123 | \ a:spec.branch, ahead) | |
2124 | endif | |
2125 | endif | |
2126 | endif | |
2127 | endif | |
2128 | else | |
2129 | let err = 'Not found' | |
2130 | endif | |
2131 | return [err, err =~# 'PlugClean'] | |
2132 | endfunction | |
2133 | ||
2134 | function! s:rm_rf(dir) | |
2135 | if isdirectory(a:dir) | |
795 | 2136 | call s:system((s:is_win ? 'rmdir /S /Q ' : 'rm -rf ') . plug#shellescape(a:dir)) |
724 | 2137 | endif |
2138 | endfunction | |
2139 | ||
2140 | function! s:clean(force) | |
2141 | call s:prepare() | |
2142 | call append(0, 'Searching for invalid plugins in '.g:plug_home) | |
2143 | call append(1, '') | |
2144 | ||
2145 | " List of valid directories | |
2146 | let dirs = [] | |
2147 | let errs = {} | |
2148 | let [cnt, total] = [0, len(g:plugs)] | |
2149 | for [name, spec] in items(g:plugs) | |
2150 | if !s:is_managed(name) | |
2151 | call add(dirs, spec.dir) | |
2152 | else | |
2153 | let [err, clean] = s:git_validate(spec, 1) | |
2154 | if clean | |
2155 | let errs[spec.dir] = s:lines(err)[0] | |
2156 | else | |
2157 | call add(dirs, spec.dir) | |
2158 | endif | |
2159 | endif | |
2160 | let cnt += 1 | |
2161 | call s:progress_bar(2, repeat('=', cnt), total) | |
2162 | normal! 2G | |
2163 | redraw | |
2164 | endfor | |
2165 | ||
2166 | let allowed = {} | |
2167 | for dir in dirs | |
2168 | let allowed[s:dirpath(fnamemodify(dir, ':h:h'))] = 1 | |
2169 | let allowed[dir] = 1 | |
2170 | for child in s:glob_dir(dir) | |
2171 | let allowed[child] = 1 | |
2172 | endfor | |
2173 | endfor | |
2174 | ||
2175 | let todo = [] | |
2176 | let found = sort(s:glob_dir(g:plug_home)) | |
2177 | while !empty(found) | |
2178 | let f = remove(found, 0) | |
2179 | if !has_key(allowed, f) && isdirectory(f) | |
2180 | call add(todo, f) | |
2181 | call append(line('$'), '- ' . f) | |
2182 | if has_key(errs, f) | |
2183 | call append(line('$'), ' ' . errs[f]) | |
2184 | endif | |
2185 | let found = filter(found, 'stridx(v:val, f) != 0') | |
2186 | end | |
2187 | endwhile | |
2188 | ||
2189 | 4 | |
2190 | redraw | |
2191 | if empty(todo) | |
2192 | call append(line('$'), 'Already clean.') | |
2193 | else | |
2194 | let s:clean_count = 0 | |
2195 | call append(3, ['Directories to delete:', '']) | |
2196 | redraw! | |
2197 | if a:force || s:ask_no_interrupt('Delete all directories?') | |
2198 | call s:delete([6, line('$')], 1) | |
2199 | else | |
2200 | call setline(4, 'Cancelled.') | |
2201 | nnoremap <silent> <buffer> d :set opfunc=<sid>delete_op<cr>g@ | |
2202 | nmap <silent> <buffer> dd d_ | |
2203 | xnoremap <silent> <buffer> d :<c-u>call <sid>delete_op(visualmode(), 1)<cr> | |
2204 | echo 'Delete the lines (d{motion}) to delete the corresponding directories' | |
2205 | endif | |
2206 | endif | |
2207 | 4 | |
2208 | setlocal nomodifiable | |
2209 | endfunction | |
2210 | ||
2211 | function! s:delete_op(type, ...) | |
2212 | call s:delete(a:0 ? [line("'<"), line("'>")] : [line("'["), line("']")], 0) | |
2213 | endfunction | |
2214 | ||
2215 | function! s:delete(range, force) | |
2216 | let [l1, l2] = a:range | |
2217 | let force = a:force | |
2218 | while l1 <= l2 | |
2219 | let line = getline(l1) | |
2220 | if line =~ '^- ' && isdirectory(line[2:]) | |
2221 | execute l1 | |
2222 | redraw! | |
2223 | let answer = force ? 1 : s:ask('Delete '.line[2:].'?', 1) | |
2224 | let force = force || answer > 1 | |
2225 | if answer | |
2226 | call s:rm_rf(line[2:]) | |
2227 | setlocal modifiable | |
2228 | call setline(l1, '~'.line[1:]) | |
2229 | let s:clean_count += 1 | |
2230 | call setline(4, printf('Removed %d directories.', s:clean_count)) | |
2231 | setlocal nomodifiable | |
2232 | endif | |
2233 | endif | |
2234 | let l1 += 1 | |
2235 | endwhile | |
2236 | endfunction | |
2237 | ||
2238 | function! s:upgrade() | |
2239 | echo 'Downloading the latest version of vim-plug' | |
2240 | redraw | |
2241 | let tmp = tempname() | |
2242 | let new = tmp . '/plug.vim' | |
2243 | ||
2244 | try | |
795 | 2245 | let out = s:system(printf('git clone --depth 1 %s %s', plug#shellescape(s:plug_src), plug#shellescape(tmp))) |
724 | 2246 | if v:shell_error |
2247 | return s:err('Error upgrading vim-plug: '. out) | |
2248 | endif | |
2249 | ||
2250 | if readfile(s:me) ==# readfile(new) | |
2251 | echo 'vim-plug is already up-to-date' | |
2252 | return 0 | |
2253 | else | |
2254 | call rename(s:me, s:me . '.old') | |
2255 | call rename(new, s:me) | |
2256 | unlet g:loaded_plug | |
2257 | echo 'vim-plug has been upgraded' | |
2258 | return 1 | |
2259 | endif | |
2260 | finally | |
2261 | silent! call s:rm_rf(tmp) | |
2262 | endtry | |
2263 | endfunction | |
2264 | ||
2265 | function! s:upgrade_specs() | |
2266 | for spec in values(g:plugs) | |
2267 | let spec.frozen = get(spec, 'frozen', 0) | |
2268 | endfor | |
2269 | endfunction | |
2270 | ||
2271 | function! s:status() | |
2272 | call s:prepare() | |
2273 | call append(0, 'Checking plugins') | |
2274 | call append(1, '') | |
2275 | ||
2276 | let ecnt = 0 | |
2277 | let unloaded = 0 | |
2278 | let [cnt, total] = [0, len(g:plugs)] | |
2279 | for [name, spec] in items(g:plugs) | |
2280 | let is_dir = isdirectory(spec.dir) | |
2281 | if has_key(spec, 'uri') | |
2282 | if is_dir | |
2283 | let [err, _] = s:git_validate(spec, 1) | |
2284 | let [valid, msg] = [empty(err), empty(err) ? 'OK' : err] | |
2285 | else | |
2286 | let [valid, msg] = [0, 'Not found. Try PlugInstall.'] | |
2287 | endif | |
2288 | else | |
2289 | if is_dir | |
2290 | let [valid, msg] = [1, 'OK'] | |
2291 | else | |
2292 | let [valid, msg] = [0, 'Not found.'] | |
2293 | endif | |
2294 | endif | |
2295 | let cnt += 1 | |
2296 | let ecnt += !valid | |
2297 | " `s:loaded` entry can be missing if PlugUpgraded | |
2298 | if is_dir && get(s:loaded, name, -1) == 0 | |
2299 | let unloaded = 1 | |
2300 | let msg .= ' (not loaded)' | |
2301 | endif | |
2302 | call s:progress_bar(2, repeat('=', cnt), total) | |
2303 | call append(3, s:format_message(valid ? '-' : 'x', name, msg)) | |
2304 | normal! 2G | |
2305 | redraw | |
2306 | endfor | |
2307 | call setline(1, 'Finished. '.ecnt.' error(s).') | |
2308 | normal! gg | |
2309 | setlocal nomodifiable | |
2310 | if unloaded | |
2311 | echo "Press 'L' on each line to load plugin, or 'U' to update" | |
2312 | nnoremap <silent> <buffer> L :call <SID>status_load(line('.'))<cr> | |
2313 | xnoremap <silent> <buffer> L :call <SID>status_load(line('.'))<cr> | |
2314 | end | |
2315 | endfunction | |
2316 | ||
2317 | function! s:extract_name(str, prefix, suffix) | |
2318 | return matchstr(a:str, '^'.a:prefix.' \zs[^:]\+\ze:.*'.a:suffix.'$') | |
2319 | endfunction | |
2320 | ||
2321 | function! s:status_load(lnum) | |
2322 | let line = getline(a:lnum) | |
2323 | let name = s:extract_name(line, '-', '(not loaded)') | |
2324 | if !empty(name) | |
2325 | call plug#load(name) | |
2326 | setlocal modifiable | |
2327 | call setline(a:lnum, substitute(line, ' (not loaded)$', '', '')) | |
2328 | setlocal nomodifiable | |
2329 | endif | |
2330 | endfunction | |
2331 | ||
2332 | function! s:status_update() range | |
2333 | let lines = getline(a:firstline, a:lastline) | |
2334 | let names = filter(map(lines, 's:extract_name(v:val, "[x-]", "")'), '!empty(v:val)') | |
2335 | if !empty(names) | |
2336 | echo | |
2337 | execute 'PlugUpdate' join(names) | |
2338 | endif | |
2339 | endfunction | |
2340 | ||
2341 | function! s:is_preview_window_open() | |
2342 | silent! wincmd P | |
2343 | if &previewwindow | |
2344 | wincmd p | |
2345 | return 1 | |
2346 | endif | |
2347 | endfunction | |
2348 | ||
2349 | function! s:find_name(lnum) | |
2350 | for lnum in reverse(range(1, a:lnum)) | |
2351 | let line = getline(lnum) | |
2352 | if empty(line) | |
2353 | return '' | |
2354 | endif | |
2355 | let name = s:extract_name(line, '-', '') | |
2356 | if !empty(name) | |
2357 | return name | |
2358 | endif | |
2359 | endfor | |
2360 | return '' | |
2361 | endfunction | |
2362 | ||
2363 | function! s:preview_commit() | |
2364 | if b:plug_preview < 0 | |
2365 | let b:plug_preview = !s:is_preview_window_open() | |
2366 | endif | |
2367 | ||
2368 | let sha = matchstr(getline('.'), '^ \X*\zs[0-9a-f]\{7,9}') | |
2369 | if empty(sha) | |
2370 | return | |
2371 | endif | |
2372 | ||
2373 | let name = s:find_name(line('.')) | |
2374 | if empty(name) || !has_key(g:plugs, name) || !isdirectory(g:plugs[name].dir) | |
2375 | return | |
2376 | endif | |
2377 | ||
2378 | if exists('g:plug_pwindow') && !s:is_preview_window_open() | |
2379 | execute g:plug_pwindow | |
2380 | execute 'e' sha | |
2381 | else | |
2382 | execute 'pedit' sha | |
2383 | wincmd P | |
2384 | endif | |
2385 | setlocal previewwindow filetype=git buftype=nofile nobuflisted modifiable | |
2386 | try | |
2387 | let [sh, shellcmdflag, shrd] = s:chsh(1) | |
795 | 2388 | let cmd = 'cd '.plug#shellescape(g:plugs[name].dir).' && git show --no-color --pretty=medium '.sha |
724 | 2389 | if s:is_win |
795 | 2390 | let [batchfile, cmd] = s:batchfile(cmd) |
724 | 2391 | endif |
2392 | execute 'silent %!' cmd | |
2393 | finally | |
2394 | let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] | |
2395 | if s:is_win | |
2396 | call delete(batchfile) | |
2397 | endif | |
2398 | endtry | |
2399 | setlocal nomodifiable | |
2400 | nnoremap <silent> <buffer> q :q<cr> | |
2401 | wincmd p | |
2402 | endfunction | |
2403 | ||
2404 | function! s:section(flags) | |
2405 | call search('\(^[x-] \)\@<=[^:]\+:', a:flags) | |
2406 | endfunction | |
2407 | ||
2408 | function! s:format_git_log(line) | |
2409 | let indent = ' ' | |
2410 | let tokens = split(a:line, nr2char(1)) | |
2411 | if len(tokens) != 5 | |
2412 | return indent.substitute(a:line, '\s*$', '', '') | |
2413 | endif | |
2414 | let [graph, sha, refs, subject, date] = tokens | |
2415 | let tag = matchstr(refs, 'tag: [^,)]\+') | |
2416 | let tag = empty(tag) ? ' ' : ' ('.tag.') ' | |
2417 | return printf('%s%s%s%s%s (%s)', indent, graph, sha, tag, subject, date) | |
2418 | endfunction | |
2419 | ||
2420 | function! s:append_ul(lnum, text) | |
2421 | call append(a:lnum, ['', a:text, repeat('-', len(a:text))]) | |
2422 | endfunction | |
2423 | ||
2424 | function! s:diff() | |
2425 | call s:prepare() | |
2426 | call append(0, ['Collecting changes ...', '']) | |
2427 | let cnts = [0, 0] | |
2428 | let bar = '' | |
2429 | let total = filter(copy(g:plugs), 's:is_managed(v:key) && isdirectory(v:val.dir)') | |
2430 | call s:progress_bar(2, bar, len(total)) | |
2431 | for origin in [1, 0] | |
2432 | let plugs = reverse(sort(items(filter(copy(total), (origin ? '' : '!').'(has_key(v:val, "commit") || has_key(v:val, "tag"))')))) | |
2433 | if empty(plugs) | |
2434 | continue | |
2435 | endif | |
2436 | call s:append_ul(2, origin ? 'Pending updates:' : 'Last update:') | |
2437 | for [k, v] in plugs | |
2438 | let range = origin ? '..origin/'.v.branch : 'HEAD@{1}..' | |
795 | 2439 | let cmd = 'git log --graph --color=never '.join(map(['--pretty=format:%x01%h%x01%d%x01%s%x01%cr', range], 'plug#shellescape(v:val)')) |
724 | 2440 | if has_key(v, 'rtp') |
795 | 2441 | let cmd .= ' -- '.plug#shellescape(v.rtp) |
724 | 2442 | endif |
2443 | let diff = s:system_chomp(cmd, v.dir) | |
2444 | if !empty(diff) | |
2445 | let ref = has_key(v, 'tag') ? (' (tag: '.v.tag.')') : has_key(v, 'commit') ? (' '.v.commit) : '' | |
2446 | call append(5, extend(['', '- '.k.':'.ref], map(s:lines(diff), 's:format_git_log(v:val)'))) | |
2447 | let cnts[origin] += 1 | |
2448 | endif | |
2449 | let bar .= '=' | |
2450 | call s:progress_bar(2, bar, len(total)) | |
2451 | normal! 2G | |
2452 | redraw | |
2453 | endfor | |
2454 | if !cnts[origin] | |
2455 | call append(5, ['', 'N/A']) | |
2456 | endif | |
2457 | endfor | |
2458 | call setline(1, printf('%d plugin(s) updated.', cnts[0]) | |
2459 | \ . (cnts[1] ? printf(' %d plugin(s) have pending updates.', cnts[1]) : '')) | |
2460 | ||
2461 | if cnts[0] || cnts[1] | |
2462 | nnoremap <silent> <buffer> <plug>(plug-preview) :silent! call <SID>preview_commit()<cr> | |
2463 | if empty(maparg("\<cr>", 'n')) | |
2464 | nmap <buffer> <cr> <plug>(plug-preview) | |
2465 | endif | |
2466 | if empty(maparg('o', 'n')) | |
2467 | nmap <buffer> o <plug>(plug-preview) | |
2468 | endif | |
2469 | endif | |
2470 | if cnts[0] | |
2471 | nnoremap <silent> <buffer> X :call <SID>revert()<cr> | |
2472 | echo "Press 'X' on each block to revert the update" | |
2473 | endif | |
2474 | normal! gg | |
2475 | setlocal nomodifiable | |
2476 | endfunction | |
2477 | ||
2478 | function! s:revert() | |
2479 | if search('^Pending updates', 'bnW') | |
2480 | return | |
2481 | endif | |
2482 | ||
2483 | let name = s:find_name(line('.')) | |
2484 | if empty(name) || !has_key(g:plugs, name) || | |
2485 | \ input(printf('Revert the update of %s? (y/N) ', name)) !~? '^y' | |
2486 | return | |
2487 | endif | |
2488 | ||
2489 | call s:system('git reset --hard HEAD@{1} && git checkout '.s:esc(g:plugs[name].branch).' --', g:plugs[name].dir) | |
2490 | setlocal modifiable | |
2491 | normal! "_dap | |
2492 | setlocal nomodifiable | |
2493 | echo 'Reverted' | |
2494 | endfunction | |
2495 | ||
2496 | function! s:snapshot(force, ...) abort | |
2497 | call s:prepare() | |
2498 | setf vim | |
2499 | call append(0, ['" Generated by vim-plug', | |
2500 | \ '" '.strftime("%c"), | |
2501 | \ '" :source this file in vim to restore the snapshot', | |
2502 | \ '" or execute: vim -S snapshot.vim', | |
2503 | \ '', '', 'PlugUpdate!']) | |
2504 | 1 | |
2505 | let anchor = line('$') - 3 | |
2506 | let names = sort(keys(filter(copy(g:plugs), | |
2507 | \'has_key(v:val, "uri") && !has_key(v:val, "commit") && isdirectory(v:val.dir)'))) | |
2508 | for name in reverse(names) | |
2509 | let sha = s:system_chomp('git rev-parse --short HEAD', g:plugs[name].dir) | |
2510 | if !empty(sha) | |
2511 | call append(anchor, printf("silent! let g:plugs['%s'].commit = '%s'", name, sha)) | |
2512 | redraw | |
2513 | endif | |
2514 | endfor | |
2515 | ||
2516 | if a:0 > 0 | |
2517 | let fn = expand(a:1) | |
2518 | if filereadable(fn) && !(a:force || s:ask(a:1.' already exists. Overwrite?')) | |
2519 | return | |
2520 | endif | |
2521 | call writefile(getline(1, '$'), fn) | |
2522 | echo 'Saved as '.a:1 | |
2523 | silent execute 'e' s:esc(fn) | |
2524 | setf vim | |
2525 | endif | |
2526 | endfunction | |
2527 | ||
2528 | function! s:split_rtp() | |
2529 | return split(&rtp, '\\\@<!,') | |
2530 | endfunction | |
2531 | ||
2532 | let s:first_rtp = s:escrtp(get(s:split_rtp(), 0, '')) | |
2533 | let s:last_rtp = s:escrtp(get(s:split_rtp(), -1, '')) | |
2534 | ||
2535 | if exists('g:plugs') | |
2536 | let g:plugs_order = get(g:, 'plugs_order', keys(g:plugs)) | |
2537 | call s:upgrade_specs() | |
2538 | call s:define_commands() | |
2539 | endif | |
2540 | ||
2541 | let &cpo = s:cpo_save | |
2542 | unlet s:cpo_save |