Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2797 lines
81 KiB

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