plug.vim 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  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. " Plug 'junegunn/seoul256.vim'
  15. " Plug 'junegunn/vim-easy-align'
  16. "
  17. " " Group dependencies, vim-snippets depends on ultisnips
  18. " Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
  19. "
  20. " " On-demand loading
  21. " Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
  22. " Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
  23. "
  24. " " Using git URL
  25. " Plug 'https://github.com/junegunn/vim-github-dashboard.git'
  26. "
  27. " " Using a non-master branch
  28. " Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
  29. " " Plugin options
  30. " Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' }
  31. "
  32. " " Plugin outside ~/.vim/plugged with post-update hook
  33. " Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
  34. "
  35. " " Unmanaged plugin (manually installed and updated)
  36. " Plug '~/my-prototype-plugin'
  37. "
  38. " " Add plugins to &runtimepath
  39. " call plug#end()
  40. "
  41. " Then reload .vimrc and :PlugInstall to install plugins.
  42. " Visit https://github.com/junegunn/vim-plug for more information.
  43. "
  44. "
  45. " Copyright (c) 2015 Junegunn Choi
  46. "
  47. " MIT License
  48. "
  49. " Permission is hereby granted, free of charge, to any person obtaining
  50. " a copy of this software and associated documentation files (the
  51. " "Software"), to deal in the Software without restriction, including
  52. " without limitation the rights to use, copy, modify, merge, publish,
  53. " distribute, sublicense, and/or sell copies of the Software, and to
  54. " permit persons to whom the Software is furnished to do so, subject to
  55. " the following conditions:
  56. "
  57. " The above copyright notice and this permission notice shall be
  58. " included in all copies or substantial portions of the Software.
  59. "
  60. " THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  61. " EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  62. " MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  63. " NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  64. " LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  65. " OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  66. " WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  67. if exists('g:loaded_plug')
  68. finish
  69. endif
  70. let g:loaded_plug = 1
  71. let s:cpo_save = &cpo
  72. set cpo&vim
  73. let s:plug_src = 'https://github.com/junegunn/vim-plug.git'
  74. let s:plug_tab = get(s:, 'plug_tab', -1)
  75. let s:plug_buf = get(s:, 'plug_buf', -1)
  76. let s:mac_gui = has('gui_macvim') && has('gui_running')
  77. let s:is_win = has('win32') || has('win64')
  78. let s:nvim = has('nvim') && exists('*jobwait') && !s:is_win
  79. let s:me = resolve(expand('<sfile>:p'))
  80. let s:base_spec = { 'branch': 'master', 'frozen': 0 }
  81. let s:TYPE = {
  82. \ 'string': type(''),
  83. \ 'list': type([]),
  84. \ 'dict': type({}),
  85. \ 'funcref': type(function('call'))
  86. \ }
  87. let s:loaded = get(s:, 'loaded', {})
  88. let s:triggers = get(s:, 'triggers', {})
  89. function! plug#begin(...)
  90. if a:0 > 0
  91. let s:plug_home_org = a:1
  92. let home = s:path(fnamemodify(expand(a:1), ':p'))
  93. elseif exists('g:plug_home')
  94. let home = s:path(g:plug_home)
  95. elseif !empty(&rtp)
  96. let home = s:path(split(&rtp, ',')[0]) . '/plugged'
  97. else
  98. return s:err('Unable to determine plug home. Try calling plug#begin() with a path argument.')
  99. endif
  100. let g:plug_home = home
  101. let g:plugs = {}
  102. let g:plugs_order = []
  103. let s:triggers = {}
  104. call s:define_commands()
  105. return 1
  106. endfunction
  107. function! s:define_commands()
  108. command! -nargs=+ -bar Plug call s:add(<args>)
  109. if !executable('git')
  110. return s:err('`git` executable not found. vim-plug requires git.')
  111. endif
  112. command! -nargs=* -bar -bang -complete=customlist,s:names PlugInstall call s:install('<bang>' == '!', [<f-args>])
  113. command! -nargs=* -bar -bang -complete=customlist,s:names PlugUpdate call s:update('<bang>' == '!', [<f-args>])
  114. command! -nargs=0 -bar -bang PlugClean call s:clean('<bang>' == '!')
  115. command! -nargs=0 -bar PlugUpgrade if s:upgrade() | execute 'source' s:esc(s:me) | endif
  116. command! -nargs=0 -bar PlugStatus call s:status()
  117. command! -nargs=0 -bar PlugDiff call s:diff()
  118. command! -nargs=? -bar PlugSnapshot call s:snapshot(<f-args>)
  119. endfunction
  120. function! s:to_a(v)
  121. return type(a:v) == s:TYPE.list ? a:v : [a:v]
  122. endfunction
  123. function! s:to_s(v)
  124. return type(a:v) == s:TYPE.string ? a:v : join(a:v, "\n") . "\n"
  125. endfunction
  126. function! s:source(from, ...)
  127. for pattern in a:000
  128. for vim in s:lines(globpath(a:from, pattern))
  129. execute 'source' s:esc(vim)
  130. endfor
  131. endfor
  132. endfunction
  133. function! s:assoc(dict, key, val)
  134. let a:dict[a:key] = add(get(a:dict, a:key, []), a:val)
  135. endfunction
  136. function! plug#end()
  137. if !exists('g:plugs')
  138. return s:err('Call plug#begin() first')
  139. endif
  140. if exists('#PlugLOD')
  141. augroup PlugLOD
  142. autocmd!
  143. augroup END
  144. augroup! PlugLOD
  145. endif
  146. let lod = { 'ft': {}, 'map': {}, 'cmd': {} }
  147. filetype off
  148. for name in g:plugs_order
  149. let plug = g:plugs[name]
  150. if get(s:loaded, name, 0) || !has_key(plug, 'on') && !has_key(plug, 'for')
  151. let s:loaded[name] = 1
  152. continue
  153. endif
  154. if has_key(plug, 'on')
  155. let s:triggers[name] = { 'map': [], 'cmd': [] }
  156. for cmd in s:to_a(plug.on)
  157. if cmd =~? '^<Plug>.\+'
  158. if empty(mapcheck(cmd)) && empty(mapcheck(cmd, 'i'))
  159. call s:assoc(lod.map, cmd, name)
  160. endif
  161. call add(s:triggers[name].map, cmd)
  162. elseif cmd =~# '^[A-Z]'
  163. if exists(':'.cmd) != 2
  164. call s:assoc(lod.cmd, cmd, name)
  165. endif
  166. call add(s:triggers[name].cmd, cmd)
  167. else
  168. call s:err('Invalid `on` option: '.cmd.
  169. \ '. Should start with an uppercase letter or `<Plug>`.')
  170. endif
  171. endfor
  172. endif
  173. if has_key(plug, 'for')
  174. let types = s:to_a(plug.for)
  175. if !empty(types)
  176. call s:source(s:rtp(plug), 'ftdetect/**/*.vim', 'after/ftdetect/**/*.vim')
  177. endif
  178. for type in types
  179. call s:assoc(lod.ft, type, name)
  180. endfor
  181. endif
  182. endfor
  183. for [cmd, names] in items(lod.cmd)
  184. execute printf(
  185. \ 'command! -nargs=* -range -bang %s call s:lod_cmd(%s, "<bang>", <line1>, <line2>, <q-args>, %s)',
  186. \ cmd, string(cmd), string(names))
  187. endfor
  188. for [map, names] in items(lod.map)
  189. for [mode, map_prefix, key_prefix] in
  190. \ [['i', '<C-O>', ''], ['n', '', ''], ['v', '', 'gv'], ['o', '', '']]
  191. execute printf(
  192. \ '%snoremap <silent> %s %s:<C-U>call <SID>lod_map(%s, %s, "%s")<CR>',
  193. \ mode, map, map_prefix, string(map), string(names), key_prefix)
  194. endfor
  195. endfor
  196. for [ft, names] in items(lod.ft)
  197. augroup PlugLOD
  198. execute printf('autocmd FileType %s call <SID>lod_ft(%s, %s)',
  199. \ ft, string(ft), string(names))
  200. augroup END
  201. endfor
  202. call s:reorg_rtp()
  203. filetype plugin indent on
  204. if has('vim_starting')
  205. syntax enable
  206. else
  207. call s:reload()
  208. endif
  209. endfunction
  210. function! s:loaded_names()
  211. return filter(copy(g:plugs_order), 'get(s:loaded, v:val, 0)')
  212. endfunction
  213. function! s:reload()
  214. for name in s:loaded_names()
  215. call s:source(s:rtp(g:plugs[name]), 'plugin/**/*.vim', 'after/plugin/**/*.vim')
  216. endfor
  217. endfunction
  218. function! s:trim(str)
  219. return substitute(a:str, '[\/]\+$', '', '')
  220. endfunction
  221. function! s:version_requirement(val, min)
  222. for idx in range(0, len(a:min) - 1)
  223. let v = get(a:val, idx, 0)
  224. if v < a:min[idx] | return 0
  225. elseif v > a:min[idx] | return 1
  226. endif
  227. endfor
  228. return 1
  229. endfunction
  230. function! s:git_version_requirement(...)
  231. let s:git_version = get(s:, 'git_version',
  232. \ map(split(split(s:system('git --version'))[-1], '\.'), 'str2nr(v:val)'))
  233. return s:version_requirement(s:git_version, a:000)
  234. endfunction
  235. function! s:progress_opt(base)
  236. return a:base && !s:is_win &&
  237. \ s:git_version_requirement(1, 7, 1) ? '--progress' : ''
  238. endfunction
  239. if s:is_win
  240. function! s:rtp(spec)
  241. return s:path(a:spec.dir . get(a:spec, 'rtp', ''))
  242. endfunction
  243. function! s:path(path)
  244. return s:trim(substitute(a:path, '/', '\', 'g'))
  245. endfunction
  246. function! s:dirpath(path)
  247. return s:path(a:path) . '\'
  248. endfunction
  249. function! s:is_local_plug(repo)
  250. return a:repo =~? '^[a-z]:\|^[%~]'
  251. endfunction
  252. else
  253. function! s:rtp(spec)
  254. return s:dirpath(a:spec.dir . get(a:spec, 'rtp', ''))
  255. endfunction
  256. function! s:path(path)
  257. return s:trim(a:path)
  258. endfunction
  259. function! s:dirpath(path)
  260. return substitute(a:path, '[/\\]*$', '/', '')
  261. endfunction
  262. function! s:is_local_plug(repo)
  263. return a:repo[0] =~ '[/$~]'
  264. endfunction
  265. endif
  266. function! s:err(msg)
  267. echohl ErrorMsg
  268. echom '[vim-plug] '.a:msg
  269. echohl None
  270. return 0
  271. endfunction
  272. function! s:esc(path)
  273. return escape(a:path, ' ')
  274. endfunction
  275. function! s:escrtp(path)
  276. return escape(a:path, ' ,')
  277. endfunction
  278. function! s:remove_rtp()
  279. for name in s:loaded_names()
  280. let rtp = s:rtp(g:plugs[name])
  281. execute 'set rtp-='.s:escrtp(rtp)
  282. let after = globpath(rtp, 'after')
  283. if isdirectory(after)
  284. execute 'set rtp-='.s:escrtp(after)
  285. endif
  286. endfor
  287. endfunction
  288. function! s:reorg_rtp()
  289. if !empty(s:first_rtp)
  290. execute 'set rtp-='.s:first_rtp
  291. execute 'set rtp-='.s:last_rtp
  292. endif
  293. " &rtp is modified from outside
  294. if exists('s:prtp') && s:prtp !=# &rtp
  295. call s:remove_rtp()
  296. unlet! s:middle
  297. endif
  298. let s:middle = get(s:, 'middle', &rtp)
  299. let rtps = map(s:loaded_names(), 's:rtp(g:plugs[v:val])')
  300. let afters = filter(map(copy(rtps), 'globpath(v:val, "after")'), 'isdirectory(v:val)')
  301. let rtp = join(map(rtps, 'escape(v:val, ",")'), ',')
  302. \ . ','.s:middle.','
  303. \ . join(map(afters, 'escape(v:val, ",")'), ',')
  304. let &rtp = substitute(substitute(rtp, ',,*', ',', 'g'), '^,\|,$', '', 'g')
  305. let s:prtp = &rtp
  306. if !empty(s:first_rtp)
  307. execute 'set rtp^='.s:first_rtp
  308. execute 'set rtp+='.s:last_rtp
  309. endif
  310. endfunction
  311. function! plug#load(...)
  312. if a:0 == 0
  313. return s:err('Argument missing: plugin name(s) required')
  314. endif
  315. if !exists('g:plugs')
  316. return s:err('plug#begin was not called')
  317. endif
  318. let unknowns = filter(copy(a:000), '!has_key(g:plugs, v:val)')
  319. if !empty(unknowns)
  320. let s = len(unknowns) > 1 ? 's' : ''
  321. return s:err(printf('Unknown plugin%s: %s', s, join(unknowns, ', ')))
  322. end
  323. for name in a:000
  324. call s:lod([name], ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin'])
  325. endfor
  326. if exists('#BufRead')
  327. doautocmd BufRead
  328. endif
  329. return 1
  330. endfunction
  331. function! s:remove_triggers(name)
  332. if !has_key(s:triggers, a:name)
  333. return
  334. endif
  335. for cmd in s:triggers[a:name].cmd
  336. execute 'silent! delc' cmd
  337. endfor
  338. for map in s:triggers[a:name].map
  339. execute 'silent! unmap' map
  340. execute 'silent! iunmap' map
  341. endfor
  342. call remove(s:triggers, a:name)
  343. endfunction
  344. function! s:lod(names, types)
  345. for name in a:names
  346. call s:remove_triggers(name)
  347. let s:loaded[name] = 1
  348. endfor
  349. call s:reorg_rtp()
  350. for name in a:names
  351. let rtp = s:rtp(g:plugs[name])
  352. for dir in a:types
  353. call s:source(rtp, dir.'/**/*.vim')
  354. endfor
  355. if exists('#User#'.name)
  356. execute 'doautocmd User' name
  357. endif
  358. endfor
  359. endfunction
  360. function! s:lod_ft(pat, names)
  361. call s:lod(a:names, ['plugin', 'after/plugin', 'syntax', 'after/syntax'])
  362. execute 'autocmd! PlugLOD FileType' a:pat
  363. if exists('#filetypeplugin#FileType')
  364. doautocmd filetypeplugin FileType
  365. endif
  366. if exists('#filetypeindent#FileType')
  367. doautocmd filetypeindent FileType
  368. endif
  369. endfunction
  370. function! s:lod_cmd(cmd, bang, l1, l2, args, names)
  371. call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin'])
  372. execute printf('%s%s%s %s', (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args)
  373. endfunction
  374. function! s:lod_map(map, names, prefix)
  375. call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin'])
  376. let extra = ''
  377. while 1
  378. let c = getchar(0)
  379. if c == 0
  380. break
  381. endif
  382. let extra .= nr2char(c)
  383. endwhile
  384. call feedkeys(a:prefix . substitute(a:map, '^<Plug>', "\<Plug>", '') . extra)
  385. endfunction
  386. function! s:add(repo, ...)
  387. if a:0 > 1
  388. return s:err('Invalid number of arguments (1..2)')
  389. endif
  390. try
  391. let repo = s:trim(a:repo)
  392. let name = fnamemodify(repo, ':t:s?\.git$??')
  393. let spec = extend(s:infer_properties(name, repo),
  394. \ a:0 == 1 ? s:parse_options(a:1) : s:base_spec)
  395. if !has_key(g:plugs, name)
  396. call add(g:plugs_order, name)
  397. endif
  398. let g:plugs[name] = spec
  399. let s:loaded[name] = get(s:loaded, name, 0)
  400. catch
  401. return s:err(v:exception)
  402. endtry
  403. endfunction
  404. function! s:parse_options(arg)
  405. let opts = copy(s:base_spec)
  406. let type = type(a:arg)
  407. if type == s:TYPE.string
  408. let opts.tag = a:arg
  409. elseif type == s:TYPE.dict
  410. call extend(opts, a:arg)
  411. if has_key(opts, 'dir')
  412. let opts.dir = s:dirpath(expand(opts.dir))
  413. endif
  414. else
  415. throw 'Invalid argument type (expected: string or dictionary)'
  416. endif
  417. return opts
  418. endfunction
  419. function! s:infer_properties(name, repo)
  420. let repo = a:repo
  421. if s:is_local_plug(repo)
  422. return { 'dir': s:dirpath(expand(repo)) }
  423. else
  424. if repo =~ ':'
  425. let uri = repo
  426. else
  427. if repo !~ '/'
  428. let repo = 'vim-scripts/'. repo
  429. endif
  430. let fmt = get(g:, 'plug_url_format', 'https://git::@github.com/%s.git')
  431. let uri = printf(fmt, repo)
  432. endif
  433. let dir = s:dirpath( fnamemodify(join([g:plug_home, a:name], '/'), ':p') )
  434. return { 'dir': dir, 'uri': uri }
  435. endif
  436. endfunction
  437. function! s:install(force, names)
  438. call s:update_impl(0, a:force, a:names)
  439. endfunction
  440. function! s:update(force, names)
  441. call s:update_impl(1, a:force, a:names)
  442. endfunction
  443. function! plug#helptags()
  444. if !exists('g:plugs')
  445. return s:err('plug#begin was not called')
  446. endif
  447. for spec in values(g:plugs)
  448. let docd = join([spec.dir, 'doc'], '/')
  449. if isdirectory(docd)
  450. silent! execute 'helptags' s:esc(docd)
  451. endif
  452. endfor
  453. return 1
  454. endfunction
  455. function! s:syntax()
  456. syntax clear
  457. syntax region plug1 start=/\%1l/ end=/\%2l/ contains=plugNumber
  458. syntax region plug2 start=/\%2l/ end=/\%3l/ contains=plugBracket,plugX
  459. syn match plugNumber /[0-9]\+[0-9.]*/ contained
  460. syn match plugBracket /[[\]]/ contained
  461. syn match plugX /x/ contained
  462. syn match plugDash /^-/
  463. syn match plugPlus /^+/
  464. syn match plugStar /^*/
  465. syn match plugMessage /\(^- \)\@<=.*/
  466. syn match plugName /\(^- \)\@<=[^ ]*:/
  467. syn match plugInstall /\(^+ \)\@<=[^:]*/
  468. syn match plugUpdate /\(^* \)\@<=[^:]*/
  469. syn match plugCommit /^ [0-9a-z]\{7} .*/ contains=plugRelDate,plugSha
  470. syn match plugSha /\(^ \)\@<=[0-9a-z]\{7}/ contained
  471. syn match plugRelDate /([^)]*)$/ contained
  472. syn match plugNotLoaded /(not loaded)$/
  473. syn match plugError /^x.*/
  474. syn keyword Function PlugInstall PlugStatus PlugUpdate PlugClean
  475. hi def link plug1 Title
  476. hi def link plug2 Repeat
  477. hi def link plugX Exception
  478. hi def link plugBracket Structure
  479. hi def link plugNumber Number
  480. hi def link plugDash Special
  481. hi def link plugPlus Constant
  482. hi def link plugStar Boolean
  483. hi def link plugMessage Function
  484. hi def link plugName Label
  485. hi def link plugInstall Function
  486. hi def link plugUpdate Type
  487. hi def link plugError Error
  488. hi def link plugRelDate Comment
  489. hi def link plugSha Identifier
  490. hi def link plugNotLoaded Comment
  491. endfunction
  492. function! s:lpad(str, len)
  493. return a:str . repeat(' ', a:len - len(a:str))
  494. endfunction
  495. function! s:lines(msg)
  496. return split(a:msg, "[\r\n]")
  497. endfunction
  498. function! s:lastline(msg)
  499. return get(s:lines(a:msg), -1, '')
  500. endfunction
  501. function! s:new_window()
  502. execute get(g:, 'plug_window', 'vertical topleft new')
  503. endfunction
  504. function! s:plug_window_exists()
  505. let buflist = tabpagebuflist(s:plug_tab)
  506. return !empty(buflist) && index(buflist, s:plug_buf) >= 0
  507. endfunction
  508. function! s:switch_in()
  509. if !s:plug_window_exists()
  510. return 0
  511. endif
  512. if winbufnr(0) != s:plug_buf
  513. let s:pos = [tabpagenr(), winnr(), winsaveview()]
  514. execute 'normal!' s:plug_tab.'gt'
  515. let winnr = bufwinnr(s:plug_buf)
  516. execute winnr.'wincmd w'
  517. call add(s:pos, winsaveview())
  518. else
  519. let s:pos = [winsaveview()]
  520. endif
  521. setlocal modifiable
  522. return 1
  523. endfunction
  524. function! s:switch_out(...)
  525. call winrestview(s:pos[-1])
  526. setlocal nomodifiable
  527. if a:0 > 0
  528. execute a:1
  529. endif
  530. if len(s:pos) > 1
  531. execute 'normal!' s:pos[0].'gt'
  532. execute s:pos[1] 'wincmd w'
  533. call winrestview(s:pos[2])
  534. endif
  535. endfunction
  536. function! s:prepare()
  537. call s:job_abort()
  538. if s:switch_in()
  539. silent %d _
  540. else
  541. call s:new_window()
  542. nnoremap <silent> <buffer> q :if b:plug_preview==1<bar>pc<bar>endif<bar>bd<cr>
  543. nnoremap <silent> <buffer> R :silent! call <SID>retry()<cr>
  544. nnoremap <silent> <buffer> D :PlugDiff<cr>
  545. nnoremap <silent> <buffer> S :PlugStatus<cr>
  546. nnoremap <silent> <buffer> U :call <SID>status_update()<cr>
  547. xnoremap <silent> <buffer> U :call <SID>status_update()<cr>
  548. nnoremap <silent> <buffer> ]] :silent! call <SID>section('')<cr>
  549. nnoremap <silent> <buffer> [[ :silent! call <SID>section('b')<cr>
  550. let b:plug_preview = -1
  551. let s:plug_tab = tabpagenr()
  552. let s:plug_buf = winbufnr(0)
  553. call s:assign_name()
  554. endif
  555. silent! unmap <buffer> <cr>
  556. silent! unmap <buffer> L
  557. silent! unmap <buffer> o
  558. silent! unmap <buffer> X
  559. setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile nowrap cursorline modifiable
  560. setf vim-plug
  561. call s:syntax()
  562. endfunction
  563. function! s:assign_name()
  564. " Assign buffer name
  565. let prefix = '[Plugins]'
  566. let name = prefix
  567. let idx = 2
  568. while bufexists(name)
  569. let name = printf('%s (%s)', prefix, idx)
  570. let idx = idx + 1
  571. endwhile
  572. silent! execute 'f' fnameescape(name)
  573. endfunction
  574. function! s:do(pull, force, todo)
  575. for [name, spec] in items(a:todo)
  576. if !isdirectory(spec.dir)
  577. continue
  578. endif
  579. let installed = has_key(s:update.new, name)
  580. let updated = installed ? 0 :
  581. \ (a:pull && index(s:update.errors, name) < 0 && !empty(s:system_chomp('git log --pretty=format:"%h" "HEAD...HEAD@{1}"', spec.dir)))
  582. if a:force || installed || updated
  583. execute 'cd' s:esc(spec.dir)
  584. call append(3, '- Post-update hook for '. name .' ... ')
  585. let error = ''
  586. let type = type(spec.do)
  587. if type == s:TYPE.string
  588. try
  589. " FIXME: Escaping is incomplete. We could use shellescape with eval,
  590. " but it won't work on Windows.
  591. let g:_plug_do = '!'.escape(spec.do, '#!%')
  592. execute "normal! :execute g:_plug_do\<cr>\<cr>"
  593. finally
  594. if v:shell_error
  595. let error = 'Exit status: ' . v:shell_error
  596. endif
  597. unlet g:_plug_do
  598. endtry
  599. elseif type == s:TYPE.funcref
  600. try
  601. let status = installed ? 'installed' : (updated ? 'updated' : 'unchanged')
  602. call spec.do({ 'name': name, 'status': status, 'force': a:force })
  603. catch
  604. let error = v:exception
  605. endtry
  606. else
  607. let error = 'Invalid hook type'
  608. endif
  609. call setline(4, empty(error) ? (getline(4) . 'OK')
  610. \ : ('x' . getline(4)[1:] . error))
  611. cd -
  612. endif
  613. endfor
  614. endfunction
  615. function! s:hash_match(a, b)
  616. return stridx(a:a, a:b) == 0 || stridx(a:b, a:a) == 0
  617. endfunction
  618. function! s:checkout(plugs)
  619. for [name, spec] in items(a:plugs)
  620. let sha = spec.commit
  621. call append(3, '- Checking out '.sha[:6].' of '.name.' ... ')
  622. redraw
  623. let error = []
  624. let output = s:lines(s:system('git rev-parse HEAD', spec.dir))
  625. if v:shell_error
  626. let error = output
  627. elseif !s:hash_match(sha, output[0])
  628. let output = s:lines(s:system(
  629. \ 'git fetch --depth 999999 && git checkout '.sha, spec.dir))
  630. if v:shell_error
  631. let error = output
  632. endif
  633. endif
  634. if empty(error)
  635. call setline(4, getline(4) . 'OK')
  636. else
  637. call setline(4, 'x'.getline(4)[1:] . 'Error')
  638. for line in reverse(error)
  639. call append(4, ' '.line)
  640. endfor
  641. endif
  642. endfor
  643. endfunction
  644. function! s:finish(pull)
  645. let new_frozen = len(filter(keys(s:update.new), 'g:plugs[v:val].frozen'))
  646. if new_frozen
  647. let s = new_frozen > 1 ? 's' : ''
  648. call append(3, printf('- Installed %d frozen plugin%s', new_frozen, s))
  649. endif
  650. call append(3, '- Finishing ... ')
  651. redraw
  652. call plug#helptags()
  653. call plug#end()
  654. call setline(4, getline(4) . 'Done!')
  655. redraw
  656. let msgs = []
  657. if !empty(s:update.errors)
  658. call add(msgs, "Press 'R' to retry.")
  659. endif
  660. if a:pull && len(s:update.new) < len(filter(getline(5, '$'),
  661. \ "v:val =~ '^- ' && stridx(v:val, 'Already up-to-date') < 0"))
  662. call add(msgs, "Press 'D' to see the updated changes.")
  663. endif
  664. echo join(msgs, ' ')
  665. endfunction
  666. function! s:retry()
  667. if empty(s:update.errors)
  668. return
  669. endif
  670. call s:update_impl(s:update.pull, s:update.force,
  671. \ extend(copy(s:update.errors), [s:update.threads]))
  672. endfunction
  673. function! s:is_managed(name)
  674. return has_key(g:plugs[a:name], 'uri')
  675. endfunction
  676. function! s:names(...)
  677. return sort(filter(keys(g:plugs), 'stridx(v:val, a:1) == 0 && s:is_managed(v:val)'))
  678. endfunction
  679. function! s:update_impl(pull, force, args) abort
  680. let args = copy(a:args)
  681. let threads = (len(args) > 0 && args[-1] =~ '^[1-9][0-9]*$') ?
  682. \ remove(args, -1) : get(g:, 'plug_threads', 16)
  683. let managed = filter(copy(g:plugs), 's:is_managed(v:key)')
  684. let todo = empty(args) ? filter(managed, '!v:val.frozen || !isdirectory(v:val.dir)') :
  685. \ filter(managed, 'index(args, v:key) >= 0')
  686. if empty(todo)
  687. echohl WarningMsg
  688. echo 'No plugin to '. (a:pull ? 'update' : 'install') . '.'
  689. echohl None
  690. return
  691. endif
  692. if !s:is_win && s:git_version_requirement(2, 3)
  693. let s:git_terminal_prompt = exists('$GIT_TERMINAL_PROMPT') ? $GIT_TERMINAL_PROMPT : ''
  694. let $GIT_TERMINAL_PROMPT = 0
  695. for plug in values(todo)
  696. let plug.uri = substitute(plug.uri,
  697. \ '^https://git::@github\.com', 'https://github.com', '')
  698. endfor
  699. endif
  700. if !isdirectory(g:plug_home)
  701. try
  702. call mkdir(g:plug_home, 'p')
  703. catch
  704. return s:err(printf('Invalid plug directory: %s. '.
  705. \ 'Try to call plug#begin with a valid directory', g:plug_home))
  706. endtry
  707. endif
  708. if has('nvim') && !exists('*jobwait') && threads > 1
  709. echohl WarningMsg
  710. echomsg 'vim-plug: update Neovim for parallel installer'
  711. echohl None
  712. endif
  713. let python = (has('python') || has('python3')) && (!s:nvim || has('vim_starting'))
  714. let ruby = has('ruby') && !s:nvim && (v:version >= 703 || v:version == 702 && has('patch374')) && !(s:is_win && has('gui_running'))
  715. let s:update = {
  716. \ 'start': reltime(),
  717. \ 'all': todo,
  718. \ 'todo': copy(todo),
  719. \ 'errors': [],
  720. \ 'pull': a:pull,
  721. \ 'force': a:force,
  722. \ 'new': {},
  723. \ 'threads': (python || ruby || s:nvim) ? min([len(todo), threads]) : 1,
  724. \ 'bar': '',
  725. \ 'fin': 0
  726. \ }
  727. call s:prepare()
  728. call append(0, ['', ''])
  729. normal! 2G
  730. silent! redraw
  731. let s:clone_opt = get(g:, 'plug_shallow', 1) ?
  732. \ '--depth 1' . (s:git_version_requirement(1, 7, 10) ? ' --no-single-branch' : '') : ''
  733. " Python version requirement (>= 2.7)
  734. if python && !has('python3') && !ruby && !s:nvim && s:update.threads > 1
  735. redir => pyv
  736. silent python import platform; print(platform.python_version())
  737. redir END
  738. let python = s:version_requirement(
  739. \ map(split(split(pyv)[0], '\.'), 'str2nr(v:val)'), [2, 6])
  740. endif
  741. if (python || ruby) && s:update.threads > 1
  742. try
  743. let imd = &imd
  744. if s:mac_gui
  745. set noimd
  746. endif
  747. if ruby
  748. call s:update_ruby()
  749. else
  750. call s:update_python()
  751. endif
  752. catch
  753. let lines = getline(4, '$')
  754. let printed = {}
  755. silent! 4,$d _
  756. for line in lines
  757. let name = s:extract_name(line, '.', '')
  758. if empty(name) || !has_key(printed, name)
  759. call append('$', line)
  760. if !empty(name)
  761. let printed[name] = 1
  762. if line[0] == 'x' && index(s:update.errors, name) < 0
  763. call add(s:update.errors, name)
  764. end
  765. endif
  766. endif
  767. endfor
  768. finally
  769. let &imd = imd
  770. call s:update_finish()
  771. endtry
  772. else
  773. call s:update_vim()
  774. endif
  775. endfunction
  776. function! s:update_finish()
  777. if exists('s:git_terminal_prompt')
  778. let $GIT_TERMINAL_PROMPT = s:git_terminal_prompt
  779. endif
  780. if s:switch_in()
  781. call s:checkout(filter(copy(s:update.all), 'has_key(v:val, "commit")'))
  782. call s:do(s:update.pull, s:update.force, filter(copy(s:update.all), 'has_key(v:val, "do")'))
  783. call s:finish(s:update.pull)
  784. call setline(1, 'Updated. Elapsed time: ' . split(reltimestr(reltime(s:update.start)))[0] . ' sec.')
  785. call s:switch_out('normal! gg')
  786. endif
  787. endfunction
  788. function! s:job_abort()
  789. if !s:nvim || !exists('s:jobs')
  790. return
  791. endif
  792. for [name, j] in items(s:jobs)
  793. silent! call jobstop(j.jobid)
  794. if j.new
  795. call s:system('rm -rf ' . s:shellesc(g:plugs[name].dir))
  796. endif
  797. endfor
  798. let s:jobs = {}
  799. endfunction
  800. " When a:event == 'stdout', data = list of strings
  801. " When a:event == 'exit', data = returncode
  802. function! s:job_handler(job_id, data, event) abort
  803. if !s:plug_window_exists() " plug window closed
  804. return s:job_abort()
  805. endif
  806. if a:event == 'stdout'
  807. let complete = empty(a:data[-1])
  808. let lines = map(filter(a:data, 'len(v:val) > 0'), 'split(v:val, "[\r\n]")[-1]')
  809. call extend(self.lines, lines)
  810. let self.result = join(self.lines, "\n")
  811. if !complete
  812. call remove(self.lines, -1)
  813. endif
  814. " To reduce the number of buffer updates
  815. let self.tick = get(self, 'tick', -1) + 1
  816. if self.tick % len(s:jobs) == 0
  817. call s:log(self.new ? '+' : '*', self.name, self.result)
  818. endif
  819. elseif a:event == 'exit'
  820. let self.running = 0
  821. if a:data != 0
  822. let self.error = 1
  823. endif
  824. call s:reap(self.name)
  825. call s:tick()
  826. endif
  827. endfunction
  828. function! s:spawn(name, cmd, opts)
  829. let job = { 'name': a:name, 'running': 1, 'error': 0, 'lines': [], 'result': '',
  830. \ 'new': get(a:opts, 'new', 0),
  831. \ 'on_stdout': function('s:job_handler'),
  832. \ 'on_exit' : function('s:job_handler'),
  833. \ }
  834. let s:jobs[a:name] = job
  835. if s:nvim
  836. let argv = [ 'sh', '-c',
  837. \ (has_key(a:opts, 'dir') ? s:with_cd(a:cmd, a:opts.dir) : a:cmd) ]
  838. let jid = jobstart(argv, job)
  839. if jid > 0
  840. let job.jobid = jid
  841. else
  842. let job.running = 0
  843. let job.error = 1
  844. let job.result = jid < 0 ? 'sh is not executable' :
  845. \ 'Invalid arguments (or job table is full)'
  846. endif
  847. else
  848. let params = has_key(a:opts, 'dir') ? [a:cmd, a:opts.dir] : [a:cmd]
  849. let job.result = call('s:system', params)
  850. let job.error = v:shell_error != 0
  851. let job.running = 0
  852. endif
  853. endfunction
  854. function! s:reap(name)
  855. let job = s:jobs[a:name]
  856. if job.error
  857. call add(s:update.errors, a:name)
  858. elseif get(job, 'new', 0)
  859. let s:update.new[a:name] = 1
  860. endif
  861. let s:update.bar .= job.error ? 'x' : '='
  862. call s:log(job.error ? 'x' : '-', a:name, job.result)
  863. call s:bar()
  864. call remove(s:jobs, a:name)
  865. endfunction
  866. function! s:bar()
  867. if s:switch_in()
  868. let total = len(s:update.all)
  869. call setline(1, (s:update.pull ? 'Updating' : 'Installing').
  870. \ ' plugins ('.len(s:update.bar).'/'.total.')')
  871. call s:progress_bar(2, s:update.bar, total)
  872. call s:switch_out()
  873. endif
  874. endfunction
  875. function! s:logpos(name)
  876. for i in range(1, line('$'))
  877. if getline(i) =~# '^[-+x*] '.a:name.':'
  878. return i
  879. endif
  880. endfor
  881. return 0
  882. endfunction
  883. function! s:log(bullet, name, lines)
  884. if s:switch_in()
  885. let pos = s:logpos(a:name)
  886. if pos > 0
  887. execute pos 'd _'
  888. if pos > winheight('.')
  889. let pos = 4
  890. endif
  891. else
  892. let pos = 4
  893. endif
  894. call append(pos - 1, s:format_message(a:bullet, a:name, a:lines))
  895. call s:switch_out()
  896. endif
  897. endfunction
  898. function! s:update_vim()
  899. let s:jobs = {}
  900. call s:bar()
  901. call s:tick()
  902. endfunction
  903. function! s:tick()
  904. let pull = s:update.pull
  905. let prog = s:progress_opt(s:nvim)
  906. while 1 " Without TCO, Vim stack is bound to explode
  907. if empty(s:update.todo)
  908. if empty(s:jobs) && !s:update.fin
  909. let s:update.fin = 1
  910. call s:update_finish()
  911. endif
  912. return
  913. endif
  914. let name = keys(s:update.todo)[0]
  915. let spec = remove(s:update.todo, name)
  916. let new = !isdirectory(spec.dir)
  917. call s:log(new ? '+' : '*', name, pull ? 'Updating ...' : 'Installing ...')
  918. redraw
  919. let has_tag = has_key(spec, 'tag')
  920. let checkout = s:shellesc(has_tag ? spec.tag : spec.branch)
  921. let merge = s:shellesc(has_tag ? spec.tag : 'origin/'.spec.branch)
  922. if !new
  923. let error = s:git_validate(spec, 0)
  924. if empty(error)
  925. if pull
  926. let fetch_opt = (has_tag && !empty(globpath(spec.dir, '.git/shallow'))) ? '--depth 99999999' : ''
  927. call s:spawn(name,
  928. \ printf('(git fetch %s %s 2>&1 && git checkout -q %s 2>&1 && git merge --ff-only %s 2>&1 && git submodule update --init --recursive 2>&1)',
  929. \ fetch_opt, prog, checkout, merge), { 'dir': spec.dir })
  930. else
  931. let s:jobs[name] = { 'running': 0, 'result': 'Already installed', 'error': 0 }
  932. endif
  933. else
  934. let s:jobs[name] = { 'running': 0, 'result': error, 'error': 1 }
  935. endif
  936. else
  937. call s:spawn(name,
  938. \ printf('git clone %s %s --recursive %s -b %s %s 2>&1',
  939. \ has_tag ? '' : s:clone_opt,
  940. \ prog,
  941. \ s:shellesc(spec.uri),
  942. \ checkout,
  943. \ s:shellesc(s:trim(spec.dir))), { 'new': 1 })
  944. endif
  945. if !s:jobs[name].running
  946. call s:reap(name)
  947. endif
  948. if len(s:jobs) >= s:update.threads
  949. break
  950. endif
  951. endwhile
  952. endfunction
  953. function! s:update_python()
  954. let py_exe = has('python') ? 'python' : 'python3'
  955. execute py_exe "<< EOF"
  956. import datetime
  957. import functools
  958. import os
  959. try:
  960. import queue
  961. except ImportError:
  962. import Queue as queue
  963. import random
  964. import re
  965. import shutil
  966. import signal
  967. import subprocess
  968. import tempfile
  969. import threading as thr
  970. import time
  971. import traceback
  972. import vim
  973. G_NVIM = vim.eval("has('nvim')") == '1'
  974. G_PULL = vim.eval('s:update.pull') == '1'
  975. G_RETRIES = int(vim.eval('get(g:, "plug_retries", 2)')) + 1
  976. G_TIMEOUT = int(vim.eval('get(g:, "plug_timeout", 60)'))
  977. G_CLONE_OPT = vim.eval('s:clone_opt')
  978. G_PROGRESS = vim.eval('s:progress_opt(1)')
  979. G_LOG_PROB = 1.0 / int(vim.eval('s:update.threads'))
  980. G_STOP = thr.Event()
  981. G_IS_WIN = vim.eval('s:is_win') == '1'
  982. class PlugError(Exception):
  983. def __init__(self, msg):
  984. self.msg = msg
  985. class CmdTimedOut(PlugError):
  986. pass
  987. class CmdFailed(PlugError):
  988. pass
  989. class InvalidURI(PlugError):
  990. pass
  991. class Action(object):
  992. INSTALL, UPDATE, ERROR, DONE = ['+', '*', 'x', '-']
  993. class Buffer(object):
  994. def __init__(self, lock, num_plugs, is_pull):
  995. self.bar = ''
  996. self.event = 'Updating' if is_pull else 'Installing'
  997. self.lock = lock
  998. self.maxy = int(vim.eval('winheight(".")'))
  999. self.num_plugs = num_plugs
  1000. def __where(self, name):
  1001. """ Find first line with name in current buffer. Return line num. """
  1002. found, lnum = False, 0
  1003. matcher = re.compile('^[-+x*] {0}:'.format(name))
  1004. for line in vim.current.buffer:
  1005. if matcher.search(line) is not None:
  1006. found = True
  1007. break
  1008. lnum += 1
  1009. if not found:
  1010. lnum = -1
  1011. return lnum
  1012. def header(self):
  1013. curbuf = vim.current.buffer
  1014. curbuf[0] = self.event + ' plugins ({0}/{1})'.format(len(self.bar), self.num_plugs)
  1015. num_spaces = self.num_plugs - len(self.bar)
  1016. curbuf[1] = '[{0}{1}]'.format(self.bar, num_spaces * ' ')
  1017. with self.lock:
  1018. vim.command('normal! 2G')
  1019. vim.command('redraw')
  1020. def write(self, action, name, lines):
  1021. first, rest = lines[0], lines[1:]
  1022. msg = ['{0} {1}{2}{3}'.format(action, name, ': ' if first else '', first)]
  1023. msg.extend([' ' + line for line in rest])
  1024. try:
  1025. if action == Action.ERROR:
  1026. self.bar += 'x'
  1027. vim.command("call add(s:update.errors, '{0}')".format(name))
  1028. elif action == Action.DONE:
  1029. self.bar += '='
  1030. curbuf = vim.current.buffer
  1031. lnum = self.__where(name)
  1032. if lnum != -1: # Found matching line num
  1033. del curbuf[lnum]
  1034. if lnum > self.maxy and action in set([Action.INSTALL, Action.UPDATE]):
  1035. lnum = 3
  1036. else:
  1037. lnum = 3
  1038. curbuf.append(msg, lnum)
  1039. self.header()
  1040. except vim.error:
  1041. pass
  1042. class Command(object):
  1043. CD = 'cd /d' if G_IS_WIN else 'cd'
  1044. def __init__(self, cmd, cmd_dir=None, timeout=60, cb=None, clean=None):
  1045. self.cmd = cmd
  1046. if cmd_dir:
  1047. self.cmd = '{0} {1} && {2}'.format(Command.CD, cmd_dir, self.cmd)
  1048. self.timeout = timeout
  1049. self.callback = cb if cb else (lambda msg: None)
  1050. self.clean = clean if clean else (lambda: None)
  1051. self.proc = None
  1052. @property
  1053. def alive(self):
  1054. """ Returns true only if command still running. """
  1055. return self.proc and self.proc.poll() is None
  1056. def execute(self, ntries=3):
  1057. """ Execute the command with ntries if CmdTimedOut.
  1058. Returns the output of the command if no Exception.
  1059. """
  1060. attempt, finished, limit = 0, False, self.timeout
  1061. while not finished:
  1062. try:
  1063. attempt += 1
  1064. result = self.try_command()
  1065. finished = True
  1066. return result
  1067. except CmdTimedOut:
  1068. if attempt != ntries:
  1069. self.notify_retry()
  1070. self.timeout += limit
  1071. else:
  1072. raise
  1073. def notify_retry(self):
  1074. """ Retry required for command, notify user. """
  1075. for count in range(3, 0, -1):
  1076. if G_STOP.is_set():
  1077. raise KeyboardInterrupt
  1078. msg = 'Timeout. Will retry in {0} second{1} ...'.format(
  1079. count, 's' if count != 1 else '')
  1080. self.callback([msg])
  1081. time.sleep(1)
  1082. self.callback(['Retrying ...'])
  1083. def try_command(self):
  1084. """ Execute a cmd & poll for callback. Returns list of output.
  1085. Raises CmdFailed -> return code for Popen isn't 0
  1086. Raises CmdTimedOut -> command exceeded timeout without new output
  1087. """
  1088. first_line = True
  1089. try:
  1090. tfile = tempfile.NamedTemporaryFile(mode='w+b')
  1091. preexec_fn = not G_IS_WIN and os.setsid or None
  1092. self.proc = subprocess.Popen(self.cmd, stdout=tfile,
  1093. stderr=subprocess.STDOUT,
  1094. stdin=subprocess.PIPE, shell=True,
  1095. preexec_fn=preexec_fn)
  1096. thrd = thr.Thread(target=(lambda proc: proc.wait()), args=(self.proc,))
  1097. thrd.start()
  1098. thread_not_started = True
  1099. while thread_not_started:
  1100. try:
  1101. thrd.join(0.1)
  1102. thread_not_started = False
  1103. except RuntimeError:
  1104. pass
  1105. while self.alive:
  1106. if G_STOP.is_set():
  1107. raise KeyboardInterrupt
  1108. if first_line or random.random() < G_LOG_PROB:
  1109. first_line = False
  1110. line = '' if G_IS_WIN else nonblock_read(tfile.name)
  1111. if line:
  1112. self.callback([line])
  1113. time_diff = time.time() - os.path.getmtime(tfile.name)
  1114. if time_diff > self.timeout:
  1115. raise CmdTimedOut(['Timeout!'])
  1116. thrd.join(0.5)
  1117. tfile.seek(0)
  1118. result = [line.decode('utf-8', 'replace').rstrip() for line in tfile]
  1119. if self.proc.returncode != 0:
  1120. raise CmdFailed([''] + result)
  1121. return result
  1122. except:
  1123. self.terminate()
  1124. raise
  1125. def terminate(self):
  1126. """ Terminate process and cleanup. """
  1127. if self.alive:
  1128. if G_IS_WIN:
  1129. os.kill(self.proc.pid, signal.SIGINT)
  1130. else:
  1131. os.killpg(self.proc.pid, signal.SIGTERM)
  1132. self.clean()
  1133. class Plugin(object):
  1134. def __init__(self, name, args, buf_q, lock):
  1135. self.name = name
  1136. self.args = args
  1137. self.buf_q = buf_q
  1138. self.lock = lock
  1139. tag = args.get('tag', 0)
  1140. self.checkout = esc(tag if tag else args['branch'])
  1141. self.merge = esc(tag if tag else 'origin/' + args['branch'])
  1142. self.tag = tag
  1143. def manage(self):
  1144. try:
  1145. if os.path.exists(self.args['dir']):
  1146. self.update()
  1147. else:
  1148. self.install()
  1149. with self.lock:
  1150. thread_vim_command("let s:update.new['{0}'] = 1".format(self.name))
  1151. except PlugError as exc:
  1152. self.write(Action.ERROR, self.name, exc.msg)
  1153. except KeyboardInterrupt:
  1154. G_STOP.set()
  1155. self.write(Action.ERROR, self.name, ['Interrupted!'])
  1156. except:
  1157. # Any exception except those above print stack trace
  1158. msg = 'Trace:\n{0}'.format(traceback.format_exc().rstrip())
  1159. self.write(Action.ERROR, self.name, msg.split('\n'))
  1160. raise
  1161. def install(self):
  1162. target = self.args['dir']
  1163. if target[-1] == '\\':
  1164. target = target[0:-1]
  1165. def clean(target):
  1166. def _clean():
  1167. try:
  1168. shutil.rmtree(target)
  1169. except OSError:
  1170. pass
  1171. return _clean
  1172. self.write(Action.INSTALL, self.name, ['Installing ...'])
  1173. callback = functools.partial(self.write, Action.INSTALL, self.name)
  1174. cmd = 'git clone {0} {1} --recursive {2} -b {3} {4} 2>&1'.format(
  1175. '' if self.tag else G_CLONE_OPT, G_PROGRESS, self.args['uri'],
  1176. self.checkout, esc(target))
  1177. com = Command(cmd, None, G_TIMEOUT, callback, clean(target))
  1178. result = com.execute(G_RETRIES)
  1179. self.write(Action.DONE, self.name, result[-1:])
  1180. def repo_uri(self):
  1181. cmd = 'git rev-parse --abbrev-ref HEAD 2>&1 && git config remote.origin.url'
  1182. command = Command(cmd, self.args['dir'], G_TIMEOUT,)
  1183. result = command.execute(G_RETRIES)
  1184. return result[-1]
  1185. def update(self):
  1186. match = re.compile(r'git::?@')
  1187. actual_uri = re.sub(match, '', self.repo_uri())
  1188. expect_uri = re.sub(match, '', self.args['uri'])
  1189. if actual_uri != expect_uri:
  1190. msg = ['',
  1191. 'Invalid URI: {0}'.format(actual_uri),
  1192. 'Expected {0}'.format(expect_uri),
  1193. 'PlugClean required.']
  1194. raise InvalidURI(msg)
  1195. if G_PULL:
  1196. self.write(Action.UPDATE, self.name, ['Updating ...'])
  1197. callback = functools.partial(self.write, Action.UPDATE, self.name)
  1198. fetch_opt = '--depth 99999999' if self.tag and os.path.isfile(os.path.join(self.args['dir'], '.git/shallow')) else ''
  1199. cmds = ['git fetch {0} {1}'.format(fetch_opt, G_PROGRESS),
  1200. 'git checkout -q {0}'.format(self.checkout),
  1201. 'git merge --ff-only {0}'.format(self.merge),
  1202. 'git submodule update --init --recursive']
  1203. cmd = ' 2>&1 && '.join(cmds)
  1204. com = Command(cmd, self.args['dir'], G_TIMEOUT, callback)
  1205. result = com.execute(G_RETRIES)
  1206. self.write(Action.DONE, self.name, result[-1:])
  1207. else:
  1208. self.write(Action.DONE, self.name, ['Already installed'])
  1209. def write(self, action, name, msg):
  1210. self.buf_q.put((action, name, msg))
  1211. class PlugThread(thr.Thread):
  1212. def __init__(self, tname, args):
  1213. super(PlugThread, self).__init__()
  1214. self.tname = tname
  1215. self.args = args
  1216. def run(self):
  1217. thr.current_thread().name = self.tname
  1218. buf_q, work_q, lock = self.args
  1219. try:
  1220. while not G_STOP.is_set():
  1221. name, args = work_q.get_nowait()
  1222. plug = Plugin(name, args, buf_q, lock)
  1223. plug.manage()
  1224. work_q.task_done()
  1225. except queue.Empty:
  1226. pass
  1227. class RefreshThread(thr.Thread):
  1228. def __init__(self, lock):
  1229. super(RefreshThread, self).__init__()
  1230. self.lock = lock
  1231. self.running = True
  1232. def run(self):
  1233. while self.running:
  1234. with self.lock:
  1235. thread_vim_command('noautocmd normal! a')
  1236. time.sleep(0.33)
  1237. def stop(self):
  1238. self.running = False
  1239. if G_NVIM:
  1240. def thread_vim_command(cmd):
  1241. vim.session.threadsafe_call(lambda: vim.command(cmd))
  1242. else:
  1243. def thread_vim_command(cmd):
  1244. vim.command(cmd)
  1245. def esc(name):
  1246. return '"' + name.replace('"', '\"') + '"'
  1247. def nonblock_read(fname):
  1248. """ Read a file with nonblock flag. Return the last line. """
  1249. fread = os.open(fname, os.O_RDONLY | os.O_NONBLOCK)
  1250. buf = os.read(fread, 100000).decode('utf-8', 'replace')
  1251. os.close(fread)
  1252. line = buf.rstrip('\r\n')
  1253. left = max(line.rfind('\r'), line.rfind('\n'))
  1254. if left != -1:
  1255. left += 1
  1256. line = line[left:]
  1257. return line
  1258. def main():
  1259. thr.current_thread().name = 'main'
  1260. nthreads = int(vim.eval('s:update.threads'))
  1261. plugs = vim.eval('s:update.todo')
  1262. mac_gui = vim.eval('s:mac_gui') == '1'
  1263. lock = thr.Lock()
  1264. buf = Buffer(lock, len(plugs), G_PULL)
  1265. buf_q, work_q = queue.Queue(), queue.Queue()
  1266. for work in plugs.items():
  1267. work_q.put(work)
  1268. start_cnt = thr.active_count()
  1269. for num in range(nthreads):
  1270. tname = 'PlugT-{0:02}'.format(num)
  1271. thread = PlugThread(tname, (buf_q, work_q, lock))
  1272. thread.start()
  1273. if mac_gui:
  1274. rthread = RefreshThread(lock)
  1275. rthread.start()
  1276. while not buf_q.empty() or thr.active_count() != start_cnt:
  1277. try:
  1278. action, name, msg = buf_q.get(True, 0.25)
  1279. buf.write(action, name, msg)
  1280. buf_q.task_done()
  1281. except queue.Empty:
  1282. pass
  1283. except KeyboardInterrupt:
  1284. G_STOP.set()
  1285. if mac_gui:
  1286. rthread.stop()
  1287. rthread.join()
  1288. main()
  1289. EOF
  1290. endfunction
  1291. function! s:update_ruby()
  1292. ruby << EOF
  1293. module PlugStream
  1294. SEP = ["\r", "\n", nil]
  1295. def get_line
  1296. buffer = ''
  1297. loop do
  1298. char = readchar rescue return
  1299. if SEP.include? char.chr
  1300. buffer << $/
  1301. break
  1302. else
  1303. buffer << char
  1304. end
  1305. end
  1306. buffer
  1307. end
  1308. end unless defined?(PlugStream)
  1309. def esc arg
  1310. %["#{arg.gsub('"', '\"')}"]
  1311. end
  1312. def killall pid
  1313. pids = [pid]
  1314. if /mswin|mingw|bccwin/ =~ RUBY_PLATFORM
  1315. pids.each { |pid| Process.kill 'INT', pid.to_i rescue nil }
  1316. else
  1317. unless `which pgrep 2> /dev/null`.empty?
  1318. children = pids
  1319. until children.empty?
  1320. children = children.map { |pid|
  1321. `pgrep -P #{pid}`.lines.map { |l| l.chomp }
  1322. }.flatten
  1323. pids += children
  1324. end
  1325. end
  1326. pids.each { |pid| Process.kill 'TERM', pid.to_i rescue nil }
  1327. end
  1328. end
  1329. require 'thread'
  1330. require 'fileutils'
  1331. require 'timeout'
  1332. running = true
  1333. iswin = VIM::evaluate('s:is_win').to_i == 1
  1334. pull = VIM::evaluate('s:update.pull').to_i == 1
  1335. base = VIM::evaluate('g:plug_home')
  1336. all = VIM::evaluate('s:update.todo')
  1337. limit = VIM::evaluate('get(g:, "plug_timeout", 60)')
  1338. tries = VIM::evaluate('get(g:, "plug_retries", 2)') + 1
  1339. nthr = VIM::evaluate('s:update.threads').to_i
  1340. maxy = VIM::evaluate('winheight(".")').to_i
  1341. cd = iswin ? 'cd /d' : 'cd'
  1342. tot = VIM::evaluate('len(s:update.todo)') || 0
  1343. bar = ''
  1344. skip = 'Already installed'
  1345. mtx = Mutex.new
  1346. take1 = proc { mtx.synchronize { running && all.shift } }
  1347. logh = proc {
  1348. cnt = bar.length
  1349. $curbuf[1] = "#{pull ? 'Updating' : 'Installing'} plugins (#{cnt}/#{tot})"
  1350. $curbuf[2] = '[' + bar.ljust(tot) + ']'
  1351. VIM::command('normal! 2G')
  1352. VIM::command('redraw')
  1353. }
  1354. where = proc { |name| (1..($curbuf.length)).find { |l| $curbuf[l] =~ /^[-+x*] #{name}:/ } }
  1355. log = proc { |name, result, type|
  1356. mtx.synchronize do
  1357. ing = ![true, false].include?(type)
  1358. bar += type ? '=' : 'x' unless ing
  1359. b = case type
  1360. when :install then '+' when :update then '*'
  1361. when true, nil then '-' else
  1362. VIM::command("call add(s:update.errors, '#{name}')")
  1363. 'x'
  1364. end
  1365. result =
  1366. if type || type.nil?
  1367. ["#{b} #{name}: #{result.lines.to_a.last}"]
  1368. elsif result =~ /^Interrupted|^Timeout/
  1369. ["#{b} #{name}: #{result}"]
  1370. else
  1371. ["#{b} #{name}"] + result.lines.map { |l| " " << l }
  1372. end
  1373. if lnum = where.call(name)
  1374. $curbuf.delete lnum
  1375. lnum = 4 if ing && lnum > maxy
  1376. end
  1377. result.each_with_index do |line, offset|
  1378. $curbuf.append((lnum || 4) - 1 + offset, line.gsub(/\e\[./, '').chomp)
  1379. end
  1380. logh.call
  1381. end
  1382. }
  1383. bt = proc { |cmd, name, type, cleanup|
  1384. tried = timeout = 0
  1385. begin
  1386. tried += 1
  1387. timeout += limit
  1388. fd = nil
  1389. data = ''
  1390. if iswin
  1391. Timeout::timeout(timeout) do
  1392. tmp = VIM::evaluate('tempname()')
  1393. system("(#{cmd}) > #{tmp}")
  1394. data = File.read(tmp).chomp
  1395. File.unlink tmp rescue nil
  1396. end
  1397. else
  1398. fd = IO.popen(cmd).extend(PlugStream)
  1399. first_line = true
  1400. log_prob = 1.0 / nthr
  1401. while line = Timeout::timeout(timeout) { fd.get_line }
  1402. data << line
  1403. log.call name, line.chomp, type if name && (first_line || rand < log_prob)
  1404. first_line = false
  1405. end
  1406. fd.close
  1407. end
  1408. [$? == 0, data.chomp]
  1409. rescue Timeout::Error, Interrupt => e
  1410. if fd && !fd.closed?
  1411. killall fd.pid
  1412. fd.close
  1413. end
  1414. cleanup.call if cleanup
  1415. if e.is_a?(Timeout::Error) && tried < tries
  1416. 3.downto(1) do |countdown|
  1417. s = countdown > 1 ? 's' : ''
  1418. log.call name, "Timeout. Will retry in #{countdown} second#{s} ...", type
  1419. sleep 1
  1420. end
  1421. log.call name, 'Retrying ...', type
  1422. retry
  1423. end
  1424. [false, e.is_a?(Interrupt) ? "Interrupted!" : "Timeout!"]
  1425. end
  1426. }
  1427. main = Thread.current
  1428. threads = []
  1429. watcher = Thread.new {
  1430. while VIM::evaluate('getchar(1)')
  1431. sleep 0.1
  1432. end
  1433. mtx.synchronize do
  1434. running = false
  1435. threads.each { |t| t.raise Interrupt }
  1436. end
  1437. threads.each { |t| t.join rescue nil }
  1438. main.kill
  1439. }
  1440. refresh = Thread.new {
  1441. while true
  1442. mtx.synchronize do
  1443. break unless running
  1444. VIM::command('noautocmd normal! a')
  1445. end
  1446. sleep 0.2
  1447. end
  1448. } if VIM::evaluate('s:mac_gui') == 1
  1449. clone_opt = VIM::evaluate('s:clone_opt')
  1450. progress = VIM::evaluate('s:progress_opt(1)')
  1451. nthr.times do
  1452. mtx.synchronize do
  1453. threads << Thread.new {
  1454. while pair = take1.call
  1455. name = pair.first
  1456. dir, uri, branch, tag = pair.last.values_at *%w[dir uri branch tag]
  1457. checkout = esc(tag ? tag : branch)
  1458. merge = esc(tag ? tag : "origin/#{branch}")
  1459. subm = "git submodule update --init --recursive 2>&1"
  1460. exists = File.directory? dir
  1461. ok, result =
  1462. if exists
  1463. chdir = "#{cd} #{iswin ? dir : esc(dir)}"
  1464. ret, data = bt.call "#{chdir} && git rev-parse --abbrev-ref HEAD 2>&1 && git config remote.origin.url", nil, nil, nil
  1465. current_uri = data.lines.to_a.last
  1466. if !ret
  1467. if data =~ /^Interrupted|^Timeout/
  1468. [false, data]
  1469. else
  1470. [false, [data.chomp, "PlugClean required."].join($/)]
  1471. end
  1472. elsif current_uri.sub(/git::?@/, '') != uri.sub(/git::?@/, '')
  1473. [false, ["Invalid URI: #{current_uri}",
  1474. "Expected: #{uri}",
  1475. "PlugClean required."].join($/)]
  1476. else
  1477. if pull
  1478. log.call name, 'Updating ...', :update
  1479. fetch_opt = (tag && File.exist?(File.join(dir, '.git/shallow'))) ? '--depth 99999999' : ''
  1480. bt.call "#{chdir} && git fetch #{fetch_opt} #{progress} 2>&1 && git checkout -q #{checkout} 2>&1 && git merge --ff-only #{merge} 2>&1 && #{subm}", name, :update, nil
  1481. else
  1482. [true, skip]
  1483. end
  1484. end
  1485. else
  1486. d = esc dir.sub(%r{[\\/]+$}, '')
  1487. log.call name, 'Installing ...', :install
  1488. bt.call "git clone #{clone_opt unless tag} #{progress} --recursive #{uri} -b #{checkout} #{d} 2>&1", name, :install, proc {
  1489. FileUtils.rm_rf dir
  1490. }
  1491. end
  1492. mtx.synchronize { VIM::command("let s:update.new['#{name}'] = 1") } if !exists && ok
  1493. log.call name, result, ok
  1494. end
  1495. } if running
  1496. end
  1497. end
  1498. threads.each { |t| t.join rescue nil }
  1499. logh.call
  1500. refresh.kill if refresh
  1501. watcher.kill
  1502. EOF
  1503. endfunction
  1504. function! s:shellesc(arg)
  1505. return '"'.escape(a:arg, '"').'"'
  1506. endfunction
  1507. function! s:glob_dir(path)
  1508. return map(filter(s:lines(globpath(a:path, '**')), 'isdirectory(v:val)'), 's:dirpath(v:val)')
  1509. endfunction
  1510. function! s:progress_bar(line, bar, total)
  1511. call setline(a:line, '[' . s:lpad(a:bar, a:total) . ']')
  1512. endfunction
  1513. function! s:compare_git_uri(a, b)
  1514. let a = substitute(a:a, 'git:\{1,2}@', '', '')
  1515. let b = substitute(a:b, 'git:\{1,2}@', '', '')
  1516. return a ==# b
  1517. endfunction
  1518. function! s:format_message(bullet, name, message)
  1519. if a:bullet != 'x'
  1520. return [printf('%s %s: %s', a:bullet, a:name, s:lastline(a:message))]
  1521. else
  1522. let lines = map(s:lines(a:message), '" ".v:val')
  1523. return extend([printf('x %s:', a:name)], lines)
  1524. endif
  1525. endfunction
  1526. function! s:with_cd(cmd, dir)
  1527. return printf('cd%s %s && %s', s:is_win ? ' /d' : '', s:shellesc(a:dir), a:cmd)
  1528. endfunction
  1529. function! s:system(cmd, ...)
  1530. try
  1531. let [sh, shrd] = [&shell, &shellredir]
  1532. if !s:is_win
  1533. set shell=sh shellredir=>%s\ 2>&1
  1534. endif
  1535. let cmd = a:0 > 0 ? s:with_cd(a:cmd, a:1) : a:cmd
  1536. return system(s:is_win ? '('.cmd.')' : cmd)
  1537. finally
  1538. let [&shell, &shellredir] = [sh, shrd]
  1539. endtry
  1540. endfunction
  1541. function! s:system_chomp(...)
  1542. let ret = call('s:system', a:000)
  1543. return v:shell_error ? '' : substitute(ret, '\n$', '', '')
  1544. endfunction
  1545. function! s:git_validate(spec, check_branch)
  1546. let err = ''
  1547. if isdirectory(a:spec.dir)
  1548. let result = s:lines(s:system('git rev-parse --abbrev-ref HEAD 2>&1 && git config remote.origin.url', a:spec.dir))
  1549. let remote = result[-1]
  1550. if v:shell_error
  1551. let err = join([remote, 'PlugClean required.'], "\n")
  1552. elseif !s:compare_git_uri(remote, a:spec.uri)
  1553. let err = join(['Invalid URI: '.remote,
  1554. \ 'Expected: '.a:spec.uri,
  1555. \ 'PlugClean required.'], "\n")
  1556. elseif a:check_branch && has_key(a:spec, 'commit')
  1557. let result = s:lines(s:system('git rev-parse HEAD 2>&1', a:spec.dir))
  1558. let sha = result[-1]
  1559. if v:shell_error
  1560. let err = join(add(result, 'PlugClean required.'), "\n")
  1561. elseif !s:hash_match(sha, a:spec.commit)
  1562. let err = join([printf('Invalid HEAD (expected: %s, actual: %s)',
  1563. \ a:spec.commit[:6], sha[:6]),
  1564. \ 'PlugUpdate required.'], "\n")
  1565. endif
  1566. elseif a:check_branch
  1567. let branch = result[0]
  1568. " Check tag
  1569. if has_key(a:spec, 'tag')
  1570. let tag = s:system_chomp('git describe --exact-match --tags HEAD 2>&1', a:spec.dir)
  1571. if a:spec.tag !=# tag
  1572. let err = printf('Invalid tag: %s (expected: %s). Try PlugUpdate.',
  1573. \ (empty(tag) ? 'N/A' : tag), a:spec.tag)
  1574. endif
  1575. " Check branch
  1576. elseif a:spec.branch !=# branch
  1577. let err = printf('Invalid branch: %s (expected: %s). Try PlugUpdate.',
  1578. \ branch, a:spec.branch)
  1579. endif
  1580. endif
  1581. else
  1582. let err = 'Not found'
  1583. endif
  1584. return err
  1585. endfunction
  1586. function! s:rm_rf(dir)
  1587. if isdirectory(a:dir)
  1588. call s:system((s:is_win ? 'rmdir /S /Q ' : 'rm -rf ') . s:shellesc(a:dir))
  1589. endif
  1590. endfunction
  1591. function! s:clean(force)
  1592. call s:prepare()
  1593. call append(0, 'Searching for unused plugins in '.g:plug_home)
  1594. call append(1, '')
  1595. " List of valid directories
  1596. let dirs = []
  1597. let [cnt, total] = [0, len(g:plugs)]
  1598. for [name, spec] in items(g:plugs)
  1599. if !s:is_managed(name) || empty(s:git_validate(spec, 0))
  1600. call add(dirs, spec.dir)
  1601. endif
  1602. let cnt += 1
  1603. call s:progress_bar(2, repeat('=', cnt), total)
  1604. normal! 2G
  1605. redraw
  1606. endfor
  1607. let allowed = {}
  1608. for dir in dirs
  1609. let allowed[s:dirpath(fnamemodify(dir, ':h:h'))] = 1
  1610. let allowed[dir] = 1
  1611. for child in s:glob_dir(dir)
  1612. let allowed[child] = 1
  1613. endfor
  1614. endfor
  1615. let todo = []
  1616. let found = sort(s:glob_dir(g:plug_home))
  1617. while !empty(found)
  1618. let f = remove(found, 0)
  1619. if !has_key(allowed, f) && isdirectory(f)
  1620. call add(todo, f)
  1621. call append(line('$'), '- ' . f)
  1622. let found = filter(found, 'stridx(v:val, f) != 0')
  1623. end
  1624. endwhile
  1625. normal! G
  1626. redraw
  1627. if empty(todo)
  1628. call append(line('$'), 'Already clean.')
  1629. else
  1630. call inputsave()
  1631. let yes = a:force || (input('Proceed? (y/N) ') =~? '^y')
  1632. call inputrestore()
  1633. if yes
  1634. for dir in todo
  1635. call s:rm_rf(dir)
  1636. endfor
  1637. call append(line('$'), 'Removed.')
  1638. else
  1639. call append(line('$'), 'Cancelled.')
  1640. endif
  1641. endif
  1642. normal! G
  1643. endfunction
  1644. function! s:upgrade()
  1645. echo 'Downloading the latest version of vim-plug'
  1646. redraw
  1647. let tmp = tempname()
  1648. let new = tmp . '/plug.vim'
  1649. try
  1650. let out = s:system(printf('git clone --depth 1 %s %s', s:plug_src, tmp))
  1651. if v:shell_error
  1652. return s:err('Error upgrading vim-plug: '. out)
  1653. endif
  1654. if readfile(s:me) ==# readfile(new)
  1655. echo 'vim-plug is already up-to-date'
  1656. return 0
  1657. else
  1658. call rename(s:me, s:me . '.old')
  1659. call rename(new, s:me)
  1660. unlet g:loaded_plug
  1661. echo 'vim-plug has been upgraded'
  1662. return 1
  1663. endif
  1664. finally
  1665. silent! call s:rm_rf(tmp)
  1666. endtry
  1667. endfunction
  1668. function! s:upgrade_specs()
  1669. for spec in values(g:plugs)
  1670. let spec.frozen = get(spec, 'frozen', 0)
  1671. endfor
  1672. endfunction
  1673. function! s:status()
  1674. call s:prepare()
  1675. call append(0, 'Checking plugins')
  1676. call append(1, '')
  1677. let ecnt = 0
  1678. let unloaded = 0
  1679. let [cnt, total] = [0, len(g:plugs)]
  1680. for [name, spec] in items(g:plugs)
  1681. if has_key(spec, 'uri')
  1682. if isdirectory(spec.dir)
  1683. let err = s:git_validate(spec, 1)
  1684. let [valid, msg] = [empty(err), empty(err) ? 'OK' : err]
  1685. else
  1686. let [valid, msg] = [0, 'Not found. Try PlugInstall.']
  1687. endif
  1688. else
  1689. if isdirectory(spec.dir)
  1690. let [valid, msg] = [1, 'OK']
  1691. else
  1692. let [valid, msg] = [0, 'Not found.']
  1693. endif
  1694. endif
  1695. let cnt += 1
  1696. let ecnt += !valid
  1697. " `s:loaded` entry can be missing if PlugUpgraded
  1698. if valid && get(s:loaded, name, -1) == 0
  1699. let unloaded = 1
  1700. let msg .= ' (not loaded)'
  1701. endif
  1702. call s:progress_bar(2, repeat('=', cnt), total)
  1703. call append(3, s:format_message(valid ? '-' : 'x', name, msg))
  1704. normal! 2G
  1705. redraw
  1706. endfor
  1707. call setline(1, 'Finished. '.ecnt.' error(s).')
  1708. normal! gg
  1709. setlocal nomodifiable
  1710. if unloaded
  1711. echo "Press 'L' on each line to load plugin, or 'U' to update"
  1712. nnoremap <silent> <buffer> L :call <SID>status_load(line('.'))<cr>
  1713. xnoremap <silent> <buffer> L :call <SID>status_load(line('.'))<cr>
  1714. end
  1715. endfunction
  1716. function! s:extract_name(str, prefix, suffix)
  1717. return matchstr(a:str, '^'.a:prefix.' \zs[^:]\+\ze:.*'.a:suffix.'$')
  1718. endfunction
  1719. function! s:status_load(lnum)
  1720. let line = getline(a:lnum)
  1721. let name = s:extract_name(line, '-', '(not loaded)')
  1722. if !empty(name)
  1723. call plug#load(name)
  1724. setlocal modifiable
  1725. call setline(a:lnum, substitute(line, ' (not loaded)$', '', ''))
  1726. setlocal nomodifiable
  1727. endif
  1728. endfunction
  1729. function! s:status_update() range
  1730. let lines = getline(a:firstline, a:lastline)
  1731. let names = filter(map(lines, 's:extract_name(v:val, "[x-]", "")'), '!empty(v:val)')
  1732. if !empty(names)
  1733. echo
  1734. execute 'PlugUpdate' join(names)
  1735. endif
  1736. endfunction
  1737. function! s:is_preview_window_open()
  1738. silent! wincmd P
  1739. if &previewwindow
  1740. wincmd p
  1741. return 1
  1742. endif
  1743. return 0
  1744. endfunction
  1745. function! s:find_name(lnum)
  1746. for lnum in reverse(range(1, a:lnum))
  1747. let line = getline(lnum)
  1748. if empty(line)
  1749. return ''
  1750. endif
  1751. let name = s:extract_name(line, '-', '')
  1752. if !empty(name)
  1753. return name
  1754. endif
  1755. endfor
  1756. return ''
  1757. endfunction
  1758. function! s:preview_commit()
  1759. if b:plug_preview < 0
  1760. let b:plug_preview = !s:is_preview_window_open()
  1761. endif
  1762. let sha = matchstr(getline('.'), '\(^ \)\@<=[0-9a-z]\{7}')
  1763. if empty(sha)
  1764. return
  1765. endif
  1766. let name = s:find_name(line('.'))
  1767. if empty(name) || !has_key(g:plugs, name) || !isdirectory(g:plugs[name].dir)
  1768. return
  1769. endif
  1770. execute 'pedit' sha
  1771. wincmd P
  1772. setlocal filetype=git buftype=nofile nobuflisted modifiable
  1773. execute 'silent read !cd' s:shellesc(g:plugs[name].dir) '&& git show --pretty=medium' sha
  1774. normal! gg"_dd
  1775. setlocal nomodifiable
  1776. nnoremap <silent> <buffer> q :q<cr>
  1777. wincmd p
  1778. endfunction
  1779. function! s:section(flags)
  1780. call search('\(^[x-] \)\@<=[^:]\+:', a:flags)
  1781. endfunction
  1782. function! s:diff()
  1783. call s:prepare()
  1784. call append(0, 'Collecting updated changes ...')
  1785. normal! gg
  1786. redraw
  1787. let cnt = 0
  1788. for [k, v] in filter(items(g:plugs), '!has_key(v:val[1], "commit")')
  1789. if !isdirectory(v.dir) || !s:is_managed(k)
  1790. continue
  1791. endif
  1792. let diff = s:system_chomp('git log --pretty=format:"%h %s (%cr)" "HEAD...HEAD@{1}"', v.dir)
  1793. if !empty(diff)
  1794. call append(1, '')
  1795. call append(2, '- '.k.':')
  1796. call append(3, map(s:lines(diff), '" ". v:val'))
  1797. let cnt += 1
  1798. normal! gg
  1799. redraw
  1800. endif
  1801. endfor
  1802. call setline(1, cnt == 0 ? 'No updates.' : 'Last update:')
  1803. nnoremap <silent> <buffer> <cr> :silent! call <SID>preview_commit()<cr>
  1804. nnoremap <silent> <buffer> o :silent! call <SID>preview_commit()<cr>
  1805. nnoremap <silent> <buffer> X :call <SID>revert()<cr>
  1806. normal! gg
  1807. setlocal nomodifiable
  1808. if cnt > 0
  1809. echo "Press 'X' on each block to revert the update"
  1810. endif
  1811. endfunction
  1812. function! s:revert()
  1813. let name = s:find_name(line('.'))
  1814. if empty(name) || !has_key(g:plugs, name) ||
  1815. \ input(printf('Revert the update of %s? (y/N) ', name)) !~? '^y'
  1816. return
  1817. endif
  1818. call s:system('git reset --hard HEAD@{1} && git checkout '.s:esc(g:plugs[name].branch), g:plugs[name].dir)
  1819. setlocal modifiable
  1820. normal! "_dap
  1821. setlocal nomodifiable
  1822. echo 'Reverted.'
  1823. endfunction
  1824. function! s:snapshot(...) abort
  1825. let home = get(s:, 'plug_home_org', g:plug_home)
  1826. let [type, var, header] = s:is_win ?
  1827. \ ['dosbatch', '%PLUG_HOME%',
  1828. \ ['@echo off', ':: Generated by vim-plug', ':: '.strftime("%c"), '',
  1829. \ ':: Make sure to PlugUpdate first with `let g:plug_shallow = 0`', '', 'set PLUG_HOME='.home]] :
  1830. \ ['sh', '$PLUG_HOME',
  1831. \ ['#!/bin/sh', '# Generated by vim-plug', '# '.strftime("%c"), '',
  1832. \ 'vim -c ''let g:plug_shallow = 0 | PlugUpdate | qa''', '', 'PLUG_HOME='.s:esc(home)]]
  1833. call s:prepare()
  1834. execute 'setf' type
  1835. call append(0, header)
  1836. call append('$', '')
  1837. 1
  1838. redraw
  1839. let dirs = sort(map(values(filter(copy(g:plugs),
  1840. \'has_key(v:val, "uri") && !has_key(v:val, "commit") && isdirectory(v:val.dir)')), 'v:val.dir'))
  1841. let anchor = line('$') - 1
  1842. for dir in reverse(dirs)
  1843. let sha = s:system_chomp('git rev-parse --short HEAD', dir)
  1844. if !empty(sha)
  1845. call append(anchor, printf('cd %s && git reset --hard %s',
  1846. \ substitute(dir, '^\V'.escape(g:plug_home, '\'), var, ''), sha))
  1847. redraw
  1848. endif
  1849. endfor
  1850. if a:0 > 0
  1851. let fn = expand(a:1)
  1852. let fne = s:esc(fn)
  1853. call writefile(getline(1, '$'), fn)
  1854. if !s:is_win | call s:system('chmod +x ' . fne) | endif
  1855. echo 'Saved to '.a:1
  1856. silent execute 'e' fne
  1857. endif
  1858. endfunction
  1859. function! s:split_rtp()
  1860. return split(&rtp, '\\\@<!,')
  1861. endfunction
  1862. let s:first_rtp = s:escrtp(get(s:split_rtp(), 0, ''))
  1863. let s:last_rtp = s:escrtp(get(s:split_rtp(), -1, ''))
  1864. if exists('g:plugs')
  1865. let g:plugs_order = get(g:, 'plugs_order', keys(g:plugs))
  1866. call s:upgrade_specs()
  1867. call s:define_commands()
  1868. endif
  1869. let &cpo = s:cpo_save
  1870. unlet s:cpo_save