plug.vim 67 KB

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