plug.vim 72 KB

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