plug.vim 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340
  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. normal q
  648. endif
  649. call s:new_window()
  650. nnoremap <silent> <buffer> q :if b:plug_preview==1<bar>pc<bar>endif<bar>bd<cr>
  651. if a:0 == 0
  652. call s:finish_bindings()
  653. endif
  654. let b:plug_preview = -1
  655. let s:plug_tab = tabpagenr()
  656. let s:plug_buf = winbufnr(0)
  657. call s:assign_name()
  658. for k in ['<cr>', 'L', 'o', 'X', 'd', 'dd']
  659. execute 'silent! unmap <buffer>' k
  660. endfor
  661. setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile nowrap cursorline modifiable
  662. setf vim-plug
  663. if exists('g:syntax_on')
  664. call s:syntax()
  665. endif
  666. endfunction
  667. function! s:assign_name()
  668. " Assign buffer name
  669. let prefix = '[Plugins]'
  670. let name = prefix
  671. let idx = 2
  672. while bufexists(name)
  673. let name = printf('%s (%s)', prefix, idx)
  674. let idx = idx + 1
  675. endwhile
  676. silent! execute 'f' fnameescape(name)
  677. endfunction
  678. function! s:chsh(swap)
  679. let prev = [&shell, &shellredir]
  680. if !s:is_win && a:swap
  681. set shell=sh shellredir=>%s\ 2>&1
  682. endif
  683. return prev
  684. endfunction
  685. function! s:bang(cmd, ...)
  686. try
  687. let [sh, shrd] = s:chsh(a:0)
  688. " FIXME: Escaping is incomplete. We could use shellescape with eval,
  689. " but it won't work on Windows.
  690. let cmd = a:0 ? s:with_cd(a:cmd, a:1) : a:cmd
  691. let g:_plug_bang = '!'.escape(cmd, '#!%')
  692. execute "normal! :execute g:_plug_bang\<cr>\<cr>"
  693. finally
  694. unlet g:_plug_bang
  695. let [&shell, &shellredir] = [sh, shrd]
  696. endtry
  697. return v:shell_error ? 'Exit status: ' . v:shell_error : ''
  698. endfunction
  699. function! s:regress_bar()
  700. let bar = substitute(getline(2)[1:-2], '.*\zs=', 'x', '')
  701. call s:progress_bar(2, bar, len(bar))
  702. endfunction
  703. function! s:is_updated(dir)
  704. return !empty(s:system_chomp('git log --pretty=format:"%h" "HEAD...HEAD@{1}"', a:dir))
  705. endfunction
  706. function! s:do(pull, force, todo)
  707. for [name, spec] in items(a:todo)
  708. if !isdirectory(spec.dir)
  709. continue
  710. endif
  711. let installed = has_key(s:update.new, name)
  712. let updated = installed ? 0 :
  713. \ (a:pull && index(s:update.errors, name) < 0 && s:is_updated(spec.dir))
  714. if a:force || installed || updated
  715. execute 'cd' s:esc(spec.dir)
  716. call append(3, '- Post-update hook for '. name .' ... ')
  717. let error = ''
  718. let type = type(spec.do)
  719. if type == s:TYPE.string
  720. if spec.do[0] == ':'
  721. call s:load_plugin(spec)
  722. execute spec.do[1:]
  723. if !s:plug_window_exists()
  724. cd -
  725. throw 'Warning: vim-plug was terminated by the post-update hook of '.name
  726. endif
  727. else
  728. let error = s:bang(spec.do)
  729. endif
  730. elseif type == s:TYPE.funcref
  731. try
  732. let status = installed ? 'installed' : (updated ? 'updated' : 'unchanged')
  733. call spec.do({ 'name': name, 'status': status, 'force': a:force })
  734. catch
  735. let error = v:exception
  736. endtry
  737. else
  738. let error = 'Invalid hook type'
  739. endif
  740. call s:switch_in()
  741. call setline(4, empty(error) ? (getline(4) . 'OK')
  742. \ : ('x' . getline(4)[1:] . error))
  743. if !empty(error)
  744. call add(s:update.errors, name)
  745. call s:regress_bar()
  746. endif
  747. cd -
  748. endif
  749. endfor
  750. endfunction
  751. function! s:hash_match(a, b)
  752. return stridx(a:a, a:b) == 0 || stridx(a:b, a:a) == 0
  753. endfunction
  754. function! s:checkout(spec)
  755. let sha = a:spec.commit
  756. let output = s:system('git rev-parse HEAD', a:spec.dir)
  757. if !v:shell_error && !s:hash_match(sha, s:lines(output)[0])
  758. let output = s:system(
  759. \ 'git fetch --depth 999999 && git checkout '.s:esc(sha), a:spec.dir)
  760. endif
  761. return output
  762. endfunction
  763. function! s:finish(pull)
  764. let new_frozen = len(filter(keys(s:update.new), 'g:plugs[v:val].frozen'))
  765. if new_frozen
  766. let s = new_frozen > 1 ? 's' : ''
  767. call append(3, printf('- Installed %d frozen plugin%s', new_frozen, s))
  768. endif
  769. call append(3, '- Finishing ... ') | 4
  770. redraw
  771. call plug#helptags()
  772. call plug#end()
  773. call setline(4, getline(4) . 'Done!')
  774. redraw
  775. let msgs = []
  776. if !empty(s:update.errors)
  777. call add(msgs, "Press 'R' to retry.")
  778. endif
  779. if a:pull && len(s:update.new) < len(filter(getline(5, '$'),
  780. \ "v:val =~ '^- ' && stridx(v:val, 'Already up-to-date') < 0"))
  781. call add(msgs, "Press 'D' to see the updated changes.")
  782. endif
  783. echo join(msgs, ' ')
  784. call s:finish_bindings()
  785. endfunction
  786. function! s:retry()
  787. if empty(s:update.errors)
  788. return
  789. endif
  790. echo
  791. call s:update_impl(s:update.pull, s:update.force,
  792. \ extend(copy(s:update.errors), [s:update.threads]))
  793. endfunction
  794. function! s:is_managed(name)
  795. return has_key(g:plugs[a:name], 'uri')
  796. endfunction
  797. function! s:names(...)
  798. return sort(filter(keys(g:plugs), 'stridx(v:val, a:1) == 0 && s:is_managed(v:val)'))
  799. endfunction
  800. function! s:check_ruby()
  801. silent! ruby require 'thread'; VIM::command("let g:plug_ruby = '#{RUBY_VERSION}'")
  802. if !exists('g:plug_ruby')
  803. redraw!
  804. return s:warn('echom', 'Warning: Ruby interface is broken')
  805. endif
  806. let ruby_version = split(g:plug_ruby, '\.')
  807. unlet g:plug_ruby
  808. return s:version_requirement(ruby_version, [1, 8, 7])
  809. endfunction
  810. function! s:update_impl(pull, force, args) abort
  811. let args = copy(a:args)
  812. let threads = (len(args) > 0 && args[-1] =~ '^[1-9][0-9]*$') ?
  813. \ remove(args, -1) : get(g:, 'plug_threads', 16)
  814. let managed = filter(copy(g:plugs), 's:is_managed(v:key)')
  815. let todo = empty(args) ? filter(managed, '!v:val.frozen || !isdirectory(v:val.dir)') :
  816. \ filter(managed, 'index(args, v:key) >= 0')
  817. if empty(todo)
  818. return s:warn('echo', 'No plugin to '. (a:pull ? 'update' : 'install'))
  819. endif
  820. if !s:is_win && s:git_version_requirement(2, 3)
  821. let s:git_terminal_prompt = exists('$GIT_TERMINAL_PROMPT') ? $GIT_TERMINAL_PROMPT : ''
  822. let $GIT_TERMINAL_PROMPT = 0
  823. for plug in values(todo)
  824. let plug.uri = substitute(plug.uri,
  825. \ '^https://git::@github\.com', 'https://github.com', '')
  826. endfor
  827. endif
  828. if !isdirectory(g:plug_home)
  829. try
  830. call mkdir(g:plug_home, 'p')
  831. catch
  832. return s:err(printf('Invalid plug directory: %s. '.
  833. \ 'Try to call plug#begin with a valid directory', g:plug_home))
  834. endtry
  835. endif
  836. if has('nvim') && !exists('*jobwait') && threads > 1
  837. call s:warn('echom', '[vim-plug] Update Neovim for parallel installer')
  838. endif
  839. let python = (has('python') || has('python3')) && (!s:nvim || has('vim_starting'))
  840. let ruby = has('ruby') && !s:nvim && (v:version >= 703 || v:version == 702 && has('patch374')) && !(s:is_win && has('gui_running')) && s:check_ruby()
  841. let s:update = {
  842. \ 'start': reltime(),
  843. \ 'all': todo,
  844. \ 'todo': copy(todo),
  845. \ 'errors': [],
  846. \ 'pull': a:pull,
  847. \ 'force': a:force,
  848. \ 'new': {},
  849. \ 'threads': (python || ruby || s:nvim) ? min([len(todo), threads]) : 1,
  850. \ 'bar': '',
  851. \ 'fin': 0
  852. \ }
  853. call s:prepare(1)
  854. call append(0, ['', ''])
  855. normal! 2G
  856. silent! redraw
  857. let s:clone_opt = get(g:, 'plug_shallow', 1) ?
  858. \ '--depth 1' . (s:git_version_requirement(1, 7, 10) ? ' --no-single-branch' : '') : ''
  859. " Python version requirement (>= 2.7)
  860. if python && !has('python3') && !ruby && !s:nvim && s:update.threads > 1
  861. redir => pyv
  862. silent python import platform; print platform.python_version()
  863. redir END
  864. let python = s:version_requirement(
  865. \ map(split(split(pyv)[0], '\.'), 'str2nr(v:val)'), [2, 6])
  866. endif
  867. if (python || ruby) && s:update.threads > 1
  868. try
  869. let imd = &imd
  870. if s:mac_gui
  871. set noimd
  872. endif
  873. if ruby
  874. call s:update_ruby()
  875. else
  876. call s:update_python()
  877. endif
  878. catch
  879. let lines = getline(4, '$')
  880. let printed = {}
  881. silent! 4,$d _
  882. for line in lines
  883. let name = s:extract_name(line, '.', '')
  884. if empty(name) || !has_key(printed, name)
  885. call append('$', line)
  886. if !empty(name)
  887. let printed[name] = 1
  888. if line[0] == 'x' && index(s:update.errors, name) < 0
  889. call add(s:update.errors, name)
  890. end
  891. endif
  892. endif
  893. endfor
  894. finally
  895. let &imd = imd
  896. call s:update_finish()
  897. endtry
  898. else
  899. call s:update_vim()
  900. endif
  901. endfunction
  902. function! s:log4(name, msg)
  903. call setline(4, printf('- %s (%s)', a:msg, a:name))
  904. redraw
  905. endfunction
  906. function! s:update_finish()
  907. if exists('s:git_terminal_prompt')
  908. let $GIT_TERMINAL_PROMPT = s:git_terminal_prompt
  909. endif
  910. if s:switch_in()
  911. call append(3, '- Updating ...') | 4
  912. 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))'))
  913. let pos = s:logpos(name)
  914. if !pos
  915. continue
  916. endif
  917. if has_key(spec, 'commit')
  918. call s:log4(name, 'Checking out '.spec.commit)
  919. let out = s:checkout(spec)
  920. elseif has_key(spec, 'tag')
  921. let tag = spec.tag
  922. if tag =~ '\*'
  923. let tags = s:lines(s:system('git tag --list '.string(tag).' --sort -version:refname 2>&1', spec.dir))
  924. if !v:shell_error && !empty(tags)
  925. let tag = tags[0]
  926. call s:log4(name, printf('Latest tag for %s -> %s', spec.tag, tag))
  927. call append(3, '')
  928. endif
  929. endif
  930. call s:log4(name, 'Checking out '.tag)
  931. let out = s:system('git checkout -q '.s:esc(tag).' 2>&1', spec.dir)
  932. else
  933. let branch = s:esc(get(spec, 'branch', 'master'))
  934. call s:log4(name, 'Merging origin/'.branch)
  935. let out = s:system('git checkout -q '.branch.' 2>&1'
  936. \. (has_key(s:update.new, name) ? '' : ('&& git merge --ff-only origin/'.branch.' 2>&1')), spec.dir)
  937. endif
  938. if !v:shell_error && filereadable(spec.dir.'/.gitmodules') &&
  939. \ (s:update.force || has_key(s:update.new, name) || s:is_updated(spec.dir))
  940. call s:log4(name, 'Updating submodules. This may take a while.')
  941. let out .= s:bang('git submodule update --init --recursive 2>&1', spec.dir)
  942. endif
  943. let msg = s:format_message(v:shell_error ? 'x': '-', name, out)
  944. if v:shell_error
  945. call add(s:update.errors, name)
  946. call s:regress_bar()
  947. silent execute pos 'd _'
  948. call append(4, msg) | 4
  949. elseif !empty(out)
  950. call setline(pos, msg[0])
  951. endif
  952. redraw
  953. endfor
  954. silent 4 d _
  955. try
  956. 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")'))
  957. catch
  958. call s:warn('echom', v:exception)
  959. call s:warn('echo', '')
  960. return
  961. endtry
  962. call s:finish(s:update.pull)
  963. call setline(1, 'Updated. Elapsed time: ' . split(reltimestr(reltime(s:update.start)))[0] . ' sec.')
  964. call s:switch_out('normal! gg')
  965. endif
  966. endfunction
  967. function! s:job_abort()
  968. if !s:nvim || !exists('s:jobs')
  969. return
  970. endif
  971. for [name, j] in items(s:jobs)
  972. silent! call jobstop(j.jobid)
  973. if j.new
  974. call s:system('rm -rf ' . s:shellesc(g:plugs[name].dir))
  975. endif
  976. endfor
  977. let s:jobs = {}
  978. endfunction
  979. " When a:event == 'stdout', data = list of strings
  980. " When a:event == 'exit', data = returncode
  981. function! s:job_handler(job_id, data, event) abort
  982. if !s:plug_window_exists() " plug window closed
  983. return s:job_abort()
  984. endif
  985. if a:event == 'stdout'
  986. let complete = empty(a:data[-1])
  987. let lines = map(filter(a:data, 'v:val =~ "[^\r\n]"'), 'split(v:val, "[\r\n]")[-1]')
  988. call extend(self.lines, lines)
  989. let self.result = join(self.lines, "\n")
  990. if !complete
  991. call remove(self.lines, -1)
  992. endif
  993. " To reduce the number of buffer updates
  994. let self.tick = get(self, 'tick', -1) + 1
  995. if self.tick % len(s:jobs) == 0
  996. call s:log(self.new ? '+' : '*', self.name, self.result)
  997. endif
  998. elseif a:event == 'exit'
  999. let self.running = 0
  1000. if a:data != 0
  1001. let self.error = 1
  1002. endif
  1003. call s:reap(self.name)
  1004. call s:tick()
  1005. endif
  1006. endfunction
  1007. function! s:spawn(name, cmd, opts)
  1008. let job = { 'name': a:name, 'running': 1, 'error': 0, 'lines': [], 'result': '',
  1009. \ 'new': get(a:opts, 'new', 0),
  1010. \ 'on_stdout': function('s:job_handler'),
  1011. \ 'on_exit' : function('s:job_handler'),
  1012. \ }
  1013. let s:jobs[a:name] = job
  1014. if s:nvim
  1015. let argv = [ 'sh', '-c',
  1016. \ (has_key(a:opts, 'dir') ? s:with_cd(a:cmd, a:opts.dir) : a:cmd) ]
  1017. let jid = jobstart(argv, job)
  1018. if jid > 0
  1019. let job.jobid = jid
  1020. else
  1021. let job.running = 0
  1022. let job.error = 1
  1023. let job.result = jid < 0 ? 'sh is not executable' :
  1024. \ 'Invalid arguments (or job table is full)'
  1025. endif
  1026. else
  1027. let params = has_key(a:opts, 'dir') ? [a:cmd, a:opts.dir] : [a:cmd]
  1028. let job.result = call('s:system', params)
  1029. let job.error = v:shell_error != 0
  1030. let job.running = 0
  1031. endif
  1032. endfunction
  1033. function! s:reap(name)
  1034. let job = s:jobs[a:name]
  1035. if job.error
  1036. call add(s:update.errors, a:name)
  1037. elseif get(job, 'new', 0)
  1038. let s:update.new[a:name] = 1
  1039. endif
  1040. let s:update.bar .= job.error ? 'x' : '='
  1041. call s:log(job.error ? 'x' : '-', a:name, empty(job.result) ? 'OK' : job.result)
  1042. call s:bar()
  1043. call remove(s:jobs, a:name)
  1044. endfunction
  1045. function! s:bar()
  1046. if s:switch_in()
  1047. let total = len(s:update.all)
  1048. call setline(1, (s:update.pull ? 'Updating' : 'Installing').
  1049. \ ' plugins ('.len(s:update.bar).'/'.total.')')
  1050. call s:progress_bar(2, s:update.bar, total)
  1051. call s:switch_out()
  1052. endif
  1053. endfunction
  1054. function! s:logpos(name)
  1055. for i in range(4, line('$'))
  1056. if getline(i) =~# '^[-+x*] '.a:name.':'
  1057. return i
  1058. endif
  1059. endfor
  1060. endfunction
  1061. function! s:log(bullet, name, lines)
  1062. if s:switch_in()
  1063. let pos = s:logpos(a:name)
  1064. if pos > 0
  1065. silent execute pos 'd _'
  1066. if pos > winheight('.')
  1067. let pos = 4
  1068. endif
  1069. else
  1070. let pos = 4
  1071. endif
  1072. call append(pos - 1, s:format_message(a:bullet, a:name, a:lines))
  1073. call s:switch_out()
  1074. endif
  1075. endfunction
  1076. function! s:update_vim()
  1077. let s:jobs = {}
  1078. call s:bar()
  1079. call s:tick()
  1080. endfunction
  1081. function! s:tick()
  1082. let pull = s:update.pull
  1083. let prog = s:progress_opt(s:nvim)
  1084. while 1 " Without TCO, Vim stack is bound to explode
  1085. if empty(s:update.todo)
  1086. if empty(s:jobs) && !s:update.fin
  1087. let s:update.fin = 1
  1088. call s:update_finish()
  1089. endif
  1090. return
  1091. endif
  1092. let name = keys(s:update.todo)[0]
  1093. let spec = remove(s:update.todo, name)
  1094. let new = !isdirectory(spec.dir)
  1095. call s:log(new ? '+' : '*', name, pull ? 'Updating ...' : 'Installing ...')
  1096. redraw
  1097. let has_tag = has_key(spec, 'tag')
  1098. if !new
  1099. let [error, _] = s:git_validate(spec, 0)
  1100. if empty(error)
  1101. if pull
  1102. let fetch_opt = (has_tag && !empty(globpath(spec.dir, '.git/shallow'))) ? '--depth 99999999' : ''
  1103. call s:spawn(name, printf('git fetch %s %s 2>&1', fetch_opt, prog), { 'dir': spec.dir })
  1104. else
  1105. let s:jobs[name] = { 'running': 0, 'result': 'Already installed', 'error': 0 }
  1106. endif
  1107. else
  1108. let s:jobs[name] = { 'running': 0, 'result': error, 'error': 1 }
  1109. endif
  1110. else
  1111. call s:spawn(name,
  1112. \ printf('git clone %s %s %s %s 2>&1',
  1113. \ has_tag ? '' : s:clone_opt,
  1114. \ prog,
  1115. \ s:shellesc(spec.uri),
  1116. \ s:shellesc(s:trim(spec.dir))), { 'new': 1 })
  1117. endif
  1118. if !s:jobs[name].running
  1119. call s:reap(name)
  1120. endif
  1121. if len(s:jobs) >= s:update.threads
  1122. break
  1123. endif
  1124. endwhile
  1125. endfunction
  1126. function! s:update_python()
  1127. let py_exe = has('python') ? 'python' : 'python3'
  1128. execute py_exe "<< EOF"
  1129. import datetime
  1130. import functools
  1131. import os
  1132. try:
  1133. import queue
  1134. except ImportError:
  1135. import Queue as queue
  1136. import random
  1137. import re
  1138. import shutil
  1139. import signal
  1140. import subprocess
  1141. import tempfile
  1142. import threading as thr
  1143. import time
  1144. import traceback
  1145. import vim
  1146. G_NVIM = vim.eval("has('nvim')") == '1'
  1147. G_PULL = vim.eval('s:update.pull') == '1'
  1148. G_RETRIES = int(vim.eval('get(g:, "plug_retries", 2)')) + 1
  1149. G_TIMEOUT = int(vim.eval('get(g:, "plug_timeout", 60)'))
  1150. G_CLONE_OPT = vim.eval('s:clone_opt')
  1151. G_PROGRESS = vim.eval('s:progress_opt(1)')
  1152. G_LOG_PROB = 1.0 / int(vim.eval('s:update.threads'))
  1153. G_STOP = thr.Event()
  1154. G_IS_WIN = vim.eval('s:is_win') == '1'
  1155. class PlugError(Exception):
  1156. def __init__(self, msg):
  1157. self.msg = msg
  1158. class CmdTimedOut(PlugError):
  1159. pass
  1160. class CmdFailed(PlugError):
  1161. pass
  1162. class InvalidURI(PlugError):
  1163. pass
  1164. class Action(object):
  1165. INSTALL, UPDATE, ERROR, DONE = ['+', '*', 'x', '-']
  1166. class Buffer(object):
  1167. def __init__(self, lock, num_plugs, is_pull):
  1168. self.bar = ''
  1169. self.event = 'Updating' if is_pull else 'Installing'
  1170. self.lock = lock
  1171. self.maxy = int(vim.eval('winheight(".")'))
  1172. self.num_plugs = num_plugs
  1173. def __where(self, name):
  1174. """ Find first line with name in current buffer. Return line num. """
  1175. found, lnum = False, 0
  1176. matcher = re.compile('^[-+x*] {0}:'.format(name))
  1177. for line in vim.current.buffer:
  1178. if matcher.search(line) is not None:
  1179. found = True
  1180. break
  1181. lnum += 1
  1182. if not found:
  1183. lnum = -1
  1184. return lnum
  1185. def header(self):
  1186. curbuf = vim.current.buffer
  1187. curbuf[0] = self.event + ' plugins ({0}/{1})'.format(len(self.bar), self.num_plugs)
  1188. num_spaces = self.num_plugs - len(self.bar)
  1189. curbuf[1] = '[{0}{1}]'.format(self.bar, num_spaces * ' ')
  1190. with self.lock:
  1191. vim.command('normal! 2G')
  1192. vim.command('redraw')
  1193. def write(self, action, name, lines):
  1194. first, rest = lines[0], lines[1:]
  1195. msg = ['{0} {1}{2}{3}'.format(action, name, ': ' if first else '', first)]
  1196. msg.extend([' ' + line for line in rest])
  1197. try:
  1198. if action == Action.ERROR:
  1199. self.bar += 'x'
  1200. vim.command("call add(s:update.errors, '{0}')".format(name))
  1201. elif action == Action.DONE:
  1202. self.bar += '='
  1203. curbuf = vim.current.buffer
  1204. lnum = self.__where(name)
  1205. if lnum != -1: # Found matching line num
  1206. del curbuf[lnum]
  1207. if lnum > self.maxy and action in set([Action.INSTALL, Action.UPDATE]):
  1208. lnum = 3
  1209. else:
  1210. lnum = 3
  1211. curbuf.append(msg, lnum)
  1212. self.header()
  1213. except vim.error:
  1214. pass
  1215. class Command(object):
  1216. CD = 'cd /d' if G_IS_WIN else 'cd'
  1217. def __init__(self, cmd, cmd_dir=None, timeout=60, cb=None, clean=None):
  1218. self.cmd = cmd
  1219. if cmd_dir:
  1220. self.cmd = '{0} {1} && {2}'.format(Command.CD, cmd_dir, self.cmd)
  1221. self.timeout = timeout
  1222. self.callback = cb if cb else (lambda msg: None)
  1223. self.clean = clean if clean else (lambda: None)
  1224. self.proc = None
  1225. @property
  1226. def alive(self):
  1227. """ Returns true only if command still running. """
  1228. return self.proc and self.proc.poll() is None
  1229. def execute(self, ntries=3):
  1230. """ Execute the command with ntries if CmdTimedOut.
  1231. Returns the output of the command if no Exception.
  1232. """
  1233. attempt, finished, limit = 0, False, self.timeout
  1234. while not finished:
  1235. try:
  1236. attempt += 1
  1237. result = self.try_command()
  1238. finished = True
  1239. return result
  1240. except CmdTimedOut:
  1241. if attempt != ntries:
  1242. self.notify_retry()
  1243. self.timeout += limit
  1244. else:
  1245. raise
  1246. def notify_retry(self):
  1247. """ Retry required for command, notify user. """
  1248. for count in range(3, 0, -1):
  1249. if G_STOP.is_set():
  1250. raise KeyboardInterrupt
  1251. msg = 'Timeout. Will retry in {0} second{1} ...'.format(
  1252. count, 's' if count != 1 else '')
  1253. self.callback([msg])
  1254. time.sleep(1)
  1255. self.callback(['Retrying ...'])
  1256. def try_command(self):
  1257. """ Execute a cmd & poll for callback. Returns list of output.
  1258. Raises CmdFailed -> return code for Popen isn't 0
  1259. Raises CmdTimedOut -> command exceeded timeout without new output
  1260. """
  1261. first_line = True
  1262. try:
  1263. tfile = tempfile.NamedTemporaryFile(mode='w+b')
  1264. preexec_fn = not G_IS_WIN and os.setsid or None
  1265. self.proc = subprocess.Popen(self.cmd, stdout=tfile,
  1266. stderr=subprocess.STDOUT,
  1267. stdin=subprocess.PIPE, shell=True,
  1268. preexec_fn=preexec_fn)
  1269. thrd = thr.Thread(target=(lambda proc: proc.wait()), args=(self.proc,))
  1270. thrd.start()
  1271. thread_not_started = True
  1272. while thread_not_started:
  1273. try:
  1274. thrd.join(0.1)
  1275. thread_not_started = False
  1276. except RuntimeError:
  1277. pass
  1278. while self.alive:
  1279. if G_STOP.is_set():
  1280. raise KeyboardInterrupt
  1281. if first_line or random.random() < G_LOG_PROB:
  1282. first_line = False
  1283. line = '' if G_IS_WIN else nonblock_read(tfile.name)
  1284. if line:
  1285. self.callback([line])
  1286. time_diff = time.time() - os.path.getmtime(tfile.name)
  1287. if time_diff > self.timeout:
  1288. raise CmdTimedOut(['Timeout!'])
  1289. thrd.join(0.5)
  1290. tfile.seek(0)
  1291. result = [line.decode('utf-8', 'replace').rstrip() for line in tfile]
  1292. if self.proc.returncode != 0:
  1293. raise CmdFailed([''] + result)
  1294. return result
  1295. except:
  1296. self.terminate()
  1297. raise
  1298. def terminate(self):
  1299. """ Terminate process and cleanup. """
  1300. if self.alive:
  1301. if G_IS_WIN:
  1302. os.kill(self.proc.pid, signal.SIGINT)
  1303. else:
  1304. os.killpg(self.proc.pid, signal.SIGTERM)
  1305. self.clean()
  1306. class Plugin(object):
  1307. def __init__(self, name, args, buf_q, lock):
  1308. self.name = name
  1309. self.args = args
  1310. self.buf_q = buf_q
  1311. self.lock = lock
  1312. self.tag = args.get('tag', 0)
  1313. def manage(self):
  1314. try:
  1315. if os.path.exists(self.args['dir']):
  1316. self.update()
  1317. else:
  1318. self.install()
  1319. with self.lock:
  1320. thread_vim_command("let s:update.new['{0}'] = 1".format(self.name))
  1321. except PlugError as exc:
  1322. self.write(Action.ERROR, self.name, exc.msg)
  1323. except KeyboardInterrupt:
  1324. G_STOP.set()
  1325. self.write(Action.ERROR, self.name, ['Interrupted!'])
  1326. except:
  1327. # Any exception except those above print stack trace
  1328. msg = 'Trace:\n{0}'.format(traceback.format_exc().rstrip())
  1329. self.write(Action.ERROR, self.name, msg.split('\n'))
  1330. raise
  1331. def install(self):
  1332. target = self.args['dir']
  1333. if target[-1] == '\\':
  1334. target = target[0:-1]
  1335. def clean(target):
  1336. def _clean():
  1337. try:
  1338. shutil.rmtree(target)
  1339. except OSError:
  1340. pass
  1341. return _clean
  1342. self.write(Action.INSTALL, self.name, ['Installing ...'])
  1343. callback = functools.partial(self.write, Action.INSTALL, self.name)
  1344. cmd = 'git clone {0} {1} {2} {3} 2>&1'.format(
  1345. '' if self.tag else G_CLONE_OPT, G_PROGRESS, self.args['uri'],
  1346. esc(target))
  1347. com = Command(cmd, None, G_TIMEOUT, callback, clean(target))
  1348. result = com.execute(G_RETRIES)
  1349. self.write(Action.DONE, self.name, result[-1:])
  1350. def repo_uri(self):
  1351. cmd = 'git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url'
  1352. command = Command(cmd, self.args['dir'], G_TIMEOUT,)
  1353. result = command.execute(G_RETRIES)
  1354. return result[-1]
  1355. def update(self):
  1356. match = re.compile(r'git::?@')
  1357. actual_uri = re.sub(match, '', self.repo_uri())
  1358. expect_uri = re.sub(match, '', self.args['uri'])
  1359. if actual_uri != expect_uri:
  1360. msg = ['',
  1361. 'Invalid URI: {0}'.format(actual_uri),
  1362. 'Expected {0}'.format(expect_uri),
  1363. 'PlugClean required.']
  1364. raise InvalidURI(msg)
  1365. if G_PULL:
  1366. self.write(Action.UPDATE, self.name, ['Updating ...'])
  1367. callback = functools.partial(self.write, Action.UPDATE, self.name)
  1368. fetch_opt = '--depth 99999999' if self.tag and os.path.isfile(os.path.join(self.args['dir'], '.git/shallow')) else ''
  1369. cmd = 'git fetch {0} {1} 2>&1'.format(fetch_opt, G_PROGRESS)
  1370. com = Command(cmd, self.args['dir'], G_TIMEOUT, callback)
  1371. result = com.execute(G_RETRIES)
  1372. self.write(Action.DONE, self.name, result[-1:])
  1373. else:
  1374. self.write(Action.DONE, self.name, ['Already installed'])
  1375. def write(self, action, name, msg):
  1376. self.buf_q.put((action, name, msg))
  1377. class PlugThread(thr.Thread):
  1378. def __init__(self, tname, args):
  1379. super(PlugThread, self).__init__()
  1380. self.tname = tname
  1381. self.args = args
  1382. def run(self):
  1383. thr.current_thread().name = self.tname
  1384. buf_q, work_q, lock = self.args
  1385. try:
  1386. while not G_STOP.is_set():
  1387. name, args = work_q.get_nowait()
  1388. plug = Plugin(name, args, buf_q, lock)
  1389. plug.manage()
  1390. work_q.task_done()
  1391. except queue.Empty:
  1392. pass
  1393. class RefreshThread(thr.Thread):
  1394. def __init__(self, lock):
  1395. super(RefreshThread, self).__init__()
  1396. self.lock = lock
  1397. self.running = True
  1398. def run(self):
  1399. while self.running:
  1400. with self.lock:
  1401. thread_vim_command('noautocmd normal! a')
  1402. time.sleep(0.33)
  1403. def stop(self):
  1404. self.running = False
  1405. if G_NVIM:
  1406. def thread_vim_command(cmd):
  1407. vim.session.threadsafe_call(lambda: vim.command(cmd))
  1408. else:
  1409. def thread_vim_command(cmd):
  1410. vim.command(cmd)
  1411. def esc(name):
  1412. return '"' + name.replace('"', '\"') + '"'
  1413. def nonblock_read(fname):
  1414. """ Read a file with nonblock flag. Return the last line. """
  1415. fread = os.open(fname, os.O_RDONLY | os.O_NONBLOCK)
  1416. buf = os.read(fread, 100000).decode('utf-8', 'replace')
  1417. os.close(fread)
  1418. line = buf.rstrip('\r\n')
  1419. left = max(line.rfind('\r'), line.rfind('\n'))
  1420. if left != -1:
  1421. left += 1
  1422. line = line[left:]
  1423. return line
  1424. def main():
  1425. thr.current_thread().name = 'main'
  1426. nthreads = int(vim.eval('s:update.threads'))
  1427. plugs = vim.eval('s:update.todo')
  1428. mac_gui = vim.eval('s:mac_gui') == '1'
  1429. lock = thr.Lock()
  1430. buf = Buffer(lock, len(plugs), G_PULL)
  1431. buf_q, work_q = queue.Queue(), queue.Queue()
  1432. for work in plugs.items():
  1433. work_q.put(work)
  1434. start_cnt = thr.active_count()
  1435. for num in range(nthreads):
  1436. tname = 'PlugT-{0:02}'.format(num)
  1437. thread = PlugThread(tname, (buf_q, work_q, lock))
  1438. thread.start()
  1439. if mac_gui:
  1440. rthread = RefreshThread(lock)
  1441. rthread.start()
  1442. while not buf_q.empty() or thr.active_count() != start_cnt:
  1443. try:
  1444. action, name, msg = buf_q.get(True, 0.25)
  1445. buf.write(action, name, ['OK'] if not msg else msg)
  1446. buf_q.task_done()
  1447. except queue.Empty:
  1448. pass
  1449. except KeyboardInterrupt:
  1450. G_STOP.set()
  1451. if mac_gui:
  1452. rthread.stop()
  1453. rthread.join()
  1454. main()
  1455. EOF
  1456. endfunction
  1457. function! s:update_ruby()
  1458. ruby << EOF
  1459. module PlugStream
  1460. SEP = ["\r", "\n", nil]
  1461. def get_line
  1462. buffer = ''
  1463. loop do
  1464. char = readchar rescue return
  1465. if SEP.include? char.chr
  1466. buffer << $/
  1467. break
  1468. else
  1469. buffer << char
  1470. end
  1471. end
  1472. buffer
  1473. end
  1474. end unless defined?(PlugStream)
  1475. def esc arg
  1476. %["#{arg.gsub('"', '\"')}"]
  1477. end
  1478. def killall pid
  1479. pids = [pid]
  1480. if /mswin|mingw|bccwin/ =~ RUBY_PLATFORM
  1481. pids.each { |pid| Process.kill 'INT', pid.to_i rescue nil }
  1482. else
  1483. unless `which pgrep 2> /dev/null`.empty?
  1484. children = pids
  1485. until children.empty?
  1486. children = children.map { |pid|
  1487. `pgrep -P #{pid}`.lines.map { |l| l.chomp }
  1488. }.flatten
  1489. pids += children
  1490. end
  1491. end
  1492. pids.each { |pid| Process.kill 'TERM', pid.to_i rescue nil }
  1493. end
  1494. end
  1495. require 'thread'
  1496. require 'fileutils'
  1497. require 'timeout'
  1498. running = true
  1499. iswin = VIM::evaluate('s:is_win').to_i == 1
  1500. pull = VIM::evaluate('s:update.pull').to_i == 1
  1501. base = VIM::evaluate('g:plug_home')
  1502. all = VIM::evaluate('s:update.todo')
  1503. limit = VIM::evaluate('get(g:, "plug_timeout", 60)')
  1504. tries = VIM::evaluate('get(g:, "plug_retries", 2)') + 1
  1505. nthr = VIM::evaluate('s:update.threads').to_i
  1506. maxy = VIM::evaluate('winheight(".")').to_i
  1507. cd = iswin ? 'cd /d' : 'cd'
  1508. tot = VIM::evaluate('len(s:update.todo)') || 0
  1509. bar = ''
  1510. skip = 'Already installed'
  1511. mtx = Mutex.new
  1512. take1 = proc { mtx.synchronize { running && all.shift } }
  1513. logh = proc {
  1514. cnt = bar.length
  1515. $curbuf[1] = "#{pull ? 'Updating' : 'Installing'} plugins (#{cnt}/#{tot})"
  1516. $curbuf[2] = '[' + bar.ljust(tot) + ']'
  1517. VIM::command('normal! 2G')
  1518. VIM::command('redraw')
  1519. }
  1520. where = proc { |name| (1..($curbuf.length)).find { |l| $curbuf[l] =~ /^[-+x*] #{name}:/ } }
  1521. log = proc { |name, result, type|
  1522. mtx.synchronize do
  1523. ing = ![true, false].include?(type)
  1524. bar += type ? '=' : 'x' unless ing
  1525. b = case type
  1526. when :install then '+' when :update then '*'
  1527. when true, nil then '-' else
  1528. VIM::command("call add(s:update.errors, '#{name}')")
  1529. 'x'
  1530. end
  1531. result =
  1532. if type || type.nil?
  1533. ["#{b} #{name}: #{result.lines.to_a.last || 'OK'}"]
  1534. elsif result =~ /^Interrupted|^Timeout/
  1535. ["#{b} #{name}: #{result}"]
  1536. else
  1537. ["#{b} #{name}"] + result.lines.map { |l| " " << l }
  1538. end
  1539. if lnum = where.call(name)
  1540. $curbuf.delete lnum
  1541. lnum = 4 if ing && lnum > maxy
  1542. end
  1543. result.each_with_index do |line, offset|
  1544. $curbuf.append((lnum || 4) - 1 + offset, line.gsub(/\e\[./, '').chomp)
  1545. end
  1546. logh.call
  1547. end
  1548. }
  1549. bt = proc { |cmd, name, type, cleanup|
  1550. tried = timeout = 0
  1551. begin
  1552. tried += 1
  1553. timeout += limit
  1554. fd = nil
  1555. data = ''
  1556. if iswin
  1557. Timeout::timeout(timeout) do
  1558. tmp = VIM::evaluate('tempname()')
  1559. system("(#{cmd}) > #{tmp}")
  1560. data = File.read(tmp).chomp
  1561. File.unlink tmp rescue nil
  1562. end
  1563. else
  1564. fd = IO.popen(cmd).extend(PlugStream)
  1565. first_line = true
  1566. log_prob = 1.0 / nthr
  1567. while line = Timeout::timeout(timeout) { fd.get_line }
  1568. data << line
  1569. log.call name, line.chomp, type if name && (first_line || rand < log_prob)
  1570. first_line = false
  1571. end
  1572. fd.close
  1573. end
  1574. [$? == 0, data.chomp]
  1575. rescue Timeout::Error, Interrupt => e
  1576. if fd && !fd.closed?
  1577. killall fd.pid
  1578. fd.close
  1579. end
  1580. cleanup.call if cleanup
  1581. if e.is_a?(Timeout::Error) && tried < tries
  1582. 3.downto(1) do |countdown|
  1583. s = countdown > 1 ? 's' : ''
  1584. log.call name, "Timeout. Will retry in #{countdown} second#{s} ...", type
  1585. sleep 1
  1586. end
  1587. log.call name, 'Retrying ...', type
  1588. retry
  1589. end
  1590. [false, e.is_a?(Interrupt) ? "Interrupted!" : "Timeout!"]
  1591. end
  1592. }
  1593. main = Thread.current
  1594. threads = []
  1595. watcher = Thread.new {
  1596. while VIM::evaluate('getchar(1)')
  1597. sleep 0.1
  1598. end
  1599. mtx.synchronize do
  1600. running = false
  1601. threads.each { |t| t.raise Interrupt }
  1602. end
  1603. threads.each { |t| t.join rescue nil }
  1604. main.kill
  1605. }
  1606. refresh = Thread.new {
  1607. while true
  1608. mtx.synchronize do
  1609. break unless running
  1610. VIM::command('noautocmd normal! a')
  1611. end
  1612. sleep 0.2
  1613. end
  1614. } if VIM::evaluate('s:mac_gui') == 1
  1615. clone_opt = VIM::evaluate('s:clone_opt')
  1616. progress = VIM::evaluate('s:progress_opt(1)')
  1617. nthr.times do
  1618. mtx.synchronize do
  1619. threads << Thread.new {
  1620. while pair = take1.call
  1621. name = pair.first
  1622. dir, uri, tag = pair.last.values_at *%w[dir uri tag]
  1623. exists = File.directory? dir
  1624. ok, result =
  1625. if exists
  1626. chdir = "#{cd} #{iswin ? dir : esc(dir)}"
  1627. ret, data = bt.call "#{chdir} && git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url", nil, nil, nil
  1628. current_uri = data.lines.to_a.last
  1629. if !ret
  1630. if data =~ /^Interrupted|^Timeout/
  1631. [false, data]
  1632. else
  1633. [false, [data.chomp, "PlugClean required."].join($/)]
  1634. end
  1635. elsif current_uri.sub(/git::?@/, '') != uri.sub(/git::?@/, '')
  1636. [false, ["Invalid URI: #{current_uri}",
  1637. "Expected: #{uri}",
  1638. "PlugClean required."].join($/)]
  1639. else
  1640. if pull
  1641. log.call name, 'Updating ...', :update
  1642. fetch_opt = (tag && File.exist?(File.join(dir, '.git/shallow'))) ? '--depth 99999999' : ''
  1643. bt.call "#{chdir} && git fetch #{fetch_opt} #{progress} 2>&1", name, :update, nil
  1644. else
  1645. [true, skip]
  1646. end
  1647. end
  1648. else
  1649. d = esc dir.sub(%r{[\\/]+$}, '')
  1650. log.call name, 'Installing ...', :install
  1651. bt.call "git clone #{clone_opt unless tag} #{progress} #{uri} #{d} 2>&1", name, :install, proc {
  1652. FileUtils.rm_rf dir
  1653. }
  1654. end
  1655. mtx.synchronize { VIM::command("let s:update.new['#{name}'] = 1") } if !exists && ok
  1656. log.call name, result, ok
  1657. end
  1658. } if running
  1659. end
  1660. end
  1661. threads.each { |t| t.join rescue nil }
  1662. logh.call
  1663. refresh.kill if refresh
  1664. watcher.kill
  1665. EOF
  1666. endfunction
  1667. function! s:shellesc(arg)
  1668. return '"'.escape(a:arg, '"').'"'
  1669. endfunction
  1670. function! s:glob_dir(path)
  1671. return map(filter(s:glob(a:path, '**'), 'isdirectory(v:val)'), 's:dirpath(v:val)')
  1672. endfunction
  1673. function! s:progress_bar(line, bar, total)
  1674. call setline(a:line, '[' . s:lpad(a:bar, a:total) . ']')
  1675. endfunction
  1676. function! s:compare_git_uri(a, b)
  1677. let a = substitute(a:a, 'git:\{1,2}@', '', '')
  1678. let b = substitute(a:b, 'git:\{1,2}@', '', '')
  1679. return a ==# b
  1680. endfunction
  1681. function! s:format_message(bullet, name, message)
  1682. if a:bullet != 'x'
  1683. return [printf('%s %s: %s', a:bullet, a:name, s:lastline(a:message))]
  1684. else
  1685. let lines = map(s:lines(a:message), '" ".v:val')
  1686. return extend([printf('x %s:', a:name)], lines)
  1687. endif
  1688. endfunction
  1689. function! s:with_cd(cmd, dir)
  1690. return printf('cd%s %s && %s', s:is_win ? ' /d' : '', s:shellesc(a:dir), a:cmd)
  1691. endfunction
  1692. function! s:system(cmd, ...)
  1693. try
  1694. let [sh, shrd] = s:chsh(1)
  1695. let cmd = a:0 > 0 ? s:with_cd(a:cmd, a:1) : a:cmd
  1696. return system(s:is_win ? '('.cmd.')' : cmd)
  1697. finally
  1698. let [&shell, &shellredir] = [sh, shrd]
  1699. endtry
  1700. endfunction
  1701. function! s:system_chomp(...)
  1702. let ret = call('s:system', a:000)
  1703. return v:shell_error ? '' : substitute(ret, '\n$', '', '')
  1704. endfunction
  1705. function! s:git_validate(spec, check_branch)
  1706. let err = ''
  1707. if isdirectory(a:spec.dir)
  1708. 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))
  1709. let remote = result[-1]
  1710. if v:shell_error
  1711. let err = join([remote, 'PlugClean required.'], "\n")
  1712. elseif !s:compare_git_uri(remote, a:spec.uri)
  1713. let err = join(['Invalid URI: '.remote,
  1714. \ 'Expected: '.a:spec.uri,
  1715. \ 'PlugClean required.'], "\n")
  1716. elseif a:check_branch && has_key(a:spec, 'commit')
  1717. let result = s:lines(s:system('git rev-parse HEAD 2>&1', a:spec.dir))
  1718. let sha = result[-1]
  1719. if v:shell_error
  1720. let err = join(add(result, 'PlugClean required.'), "\n")
  1721. elseif !s:hash_match(sha, a:spec.commit)
  1722. let err = join([printf('Invalid HEAD (expected: %s, actual: %s)',
  1723. \ a:spec.commit[:6], sha[:6]),
  1724. \ 'PlugUpdate required.'], "\n")
  1725. endif
  1726. elseif a:check_branch
  1727. let branch = result[0]
  1728. " Check tag
  1729. if has_key(a:spec, 'tag')
  1730. let tag = s:system_chomp('git describe --exact-match --tags HEAD 2>&1', a:spec.dir)
  1731. if a:spec.tag !=# tag
  1732. let err = printf('Invalid tag: %s (expected: %s). Try PlugUpdate.',
  1733. \ (empty(tag) ? 'N/A' : tag), a:spec.tag)
  1734. endif
  1735. " Check branch
  1736. elseif a:spec.branch !=# branch
  1737. let err = printf('Invalid branch: %s (expected: %s). Try PlugUpdate.',
  1738. \ branch, a:spec.branch)
  1739. endif
  1740. if empty(err)
  1741. let commits = len(s:lines(s:system(printf('git rev-list origin/%s..HEAD', a:spec.branch), a:spec.dir)))
  1742. if !v:shell_error && commits
  1743. let err = join([printf('Diverged from origin/%s by %d commit(s).', a:spec.branch, commits),
  1744. \ 'Reinstall after PlugClean.'], "\n")
  1745. endif
  1746. endif
  1747. endif
  1748. else
  1749. let err = 'Not found'
  1750. endif
  1751. return [err, err =~# 'PlugClean']
  1752. endfunction
  1753. function! s:rm_rf(dir)
  1754. if isdirectory(a:dir)
  1755. call s:system((s:is_win ? 'rmdir /S /Q ' : 'rm -rf ') . s:shellesc(a:dir))
  1756. endif
  1757. endfunction
  1758. function! s:clean(force)
  1759. call s:prepare()
  1760. call append(0, 'Searching for invalid plugins in '.g:plug_home)
  1761. call append(1, '')
  1762. " List of valid directories
  1763. let dirs = []
  1764. let errs = {}
  1765. let [cnt, total] = [0, len(g:plugs)]
  1766. for [name, spec] in items(g:plugs)
  1767. if !s:is_managed(name)
  1768. call add(dirs, spec.dir)
  1769. else
  1770. let [err, clean] = s:git_validate(spec, 1)
  1771. if clean
  1772. let errs[spec.dir] = s:lines(err)[0]
  1773. else
  1774. call add(dirs, spec.dir)
  1775. endif
  1776. endif
  1777. let cnt += 1
  1778. call s:progress_bar(2, repeat('=', cnt), total)
  1779. normal! 2G
  1780. redraw
  1781. endfor
  1782. let allowed = {}
  1783. for dir in dirs
  1784. let allowed[s:dirpath(fnamemodify(dir, ':h:h'))] = 1
  1785. let allowed[dir] = 1
  1786. for child in s:glob_dir(dir)
  1787. let allowed[child] = 1
  1788. endfor
  1789. endfor
  1790. let todo = []
  1791. let found = sort(s:glob_dir(g:plug_home))
  1792. while !empty(found)
  1793. let f = remove(found, 0)
  1794. if !has_key(allowed, f) && isdirectory(f)
  1795. call add(todo, f)
  1796. call append(line('$'), '- ' . f)
  1797. if has_key(errs, f)
  1798. call append(line('$'), ' ' . errs[f])
  1799. endif
  1800. let found = filter(found, 'stridx(v:val, f) != 0')
  1801. end
  1802. endwhile
  1803. 4
  1804. redraw
  1805. if empty(todo)
  1806. call append(line('$'), 'Already clean.')
  1807. else
  1808. let s:clean_count = 0
  1809. call append(3, ['Directories to delete:', ''])
  1810. redraw!
  1811. if a:force || s:ask_no_interrupt('Delete all directories?')
  1812. call s:delete([6, line('$')], 1)
  1813. else
  1814. call setline(4, 'Cancelled.')
  1815. nnoremap <silent> <buffer> d :set opfunc=<sid>delete_op<cr>g@
  1816. nmap <silent> <buffer> dd d_
  1817. xnoremap <silent> <buffer> d :<c-u>call <sid>delete_op(visualmode(), 1)<cr>
  1818. echo 'Delete the lines (d{motion}) to delete the corresponding directories'
  1819. endif
  1820. endif
  1821. 4
  1822. setlocal nomodifiable
  1823. endfunction
  1824. function! s:delete_op(type, ...)
  1825. call s:delete(a:0 ? [line("'<"), line("'>")] : [line("'["), line("']")], 0)
  1826. endfunction
  1827. function! s:delete(range, force)
  1828. let [l1, l2] = a:range
  1829. let force = a:force
  1830. while l1 <= l2
  1831. let line = getline(l1)
  1832. if line =~ '^- ' && isdirectory(line[2:])
  1833. execute l1
  1834. redraw!
  1835. let answer = force ? 1 : s:ask('Delete '.line[2:].'?', 1)
  1836. let force = force || answer > 1
  1837. if answer
  1838. call s:rm_rf(line[2:])
  1839. setlocal modifiable
  1840. call setline(l1, '~'.line[1:])
  1841. let s:clean_count += 1
  1842. call setline(4, printf('Removed %d directories.', s:clean_count))
  1843. setlocal nomodifiable
  1844. endif
  1845. endif
  1846. let l1 += 1
  1847. endwhile
  1848. endfunction
  1849. function! s:upgrade()
  1850. echo 'Downloading the latest version of vim-plug'
  1851. redraw
  1852. let tmp = tempname()
  1853. let new = tmp . '/plug.vim'
  1854. try
  1855. let out = s:system(printf('git clone --depth 1 %s %s', s:plug_src, tmp))
  1856. if v:shell_error
  1857. return s:err('Error upgrading vim-plug: '. out)
  1858. endif
  1859. if readfile(s:me) ==# readfile(new)
  1860. echo 'vim-plug is already up-to-date'
  1861. return 0
  1862. else
  1863. call rename(s:me, s:me . '.old')
  1864. call rename(new, s:me)
  1865. unlet g:loaded_plug
  1866. echo 'vim-plug has been upgraded'
  1867. return 1
  1868. endif
  1869. finally
  1870. silent! call s:rm_rf(tmp)
  1871. endtry
  1872. endfunction
  1873. function! s:upgrade_specs()
  1874. for spec in values(g:plugs)
  1875. let spec.frozen = get(spec, 'frozen', 0)
  1876. endfor
  1877. endfunction
  1878. function! s:status()
  1879. call s:prepare()
  1880. call append(0, 'Checking plugins')
  1881. call append(1, '')
  1882. let ecnt = 0
  1883. let unloaded = 0
  1884. let [cnt, total] = [0, len(g:plugs)]
  1885. for [name, spec] in items(g:plugs)
  1886. if has_key(spec, 'uri')
  1887. if isdirectory(spec.dir)
  1888. let [err, _] = s:git_validate(spec, 1)
  1889. let [valid, msg] = [empty(err), empty(err) ? 'OK' : err]
  1890. else
  1891. let [valid, msg] = [0, 'Not found. Try PlugInstall.']
  1892. endif
  1893. else
  1894. if isdirectory(spec.dir)
  1895. let [valid, msg] = [1, 'OK']
  1896. else
  1897. let [valid, msg] = [0, 'Not found.']
  1898. endif
  1899. endif
  1900. let cnt += 1
  1901. let ecnt += !valid
  1902. " `s:loaded` entry can be missing if PlugUpgraded
  1903. if valid && get(s:loaded, name, -1) == 0
  1904. let unloaded = 1
  1905. let msg .= ' (not loaded)'
  1906. endif
  1907. call s:progress_bar(2, repeat('=', cnt), total)
  1908. call append(3, s:format_message(valid ? '-' : 'x', name, msg))
  1909. normal! 2G
  1910. redraw
  1911. endfor
  1912. call setline(1, 'Finished. '.ecnt.' error(s).')
  1913. normal! gg
  1914. setlocal nomodifiable
  1915. if unloaded
  1916. echo "Press 'L' on each line to load plugin, or 'U' to update"
  1917. nnoremap <silent> <buffer> L :call <SID>status_load(line('.'))<cr>
  1918. xnoremap <silent> <buffer> L :call <SID>status_load(line('.'))<cr>
  1919. end
  1920. endfunction
  1921. function! s:extract_name(str, prefix, suffix)
  1922. return matchstr(a:str, '^'.a:prefix.' \zs[^:]\+\ze:.*'.a:suffix.'$')
  1923. endfunction
  1924. function! s:status_load(lnum)
  1925. let line = getline(a:lnum)
  1926. let name = s:extract_name(line, '-', '(not loaded)')
  1927. if !empty(name)
  1928. call plug#load(name)
  1929. setlocal modifiable
  1930. call setline(a:lnum, substitute(line, ' (not loaded)$', '', ''))
  1931. setlocal nomodifiable
  1932. endif
  1933. endfunction
  1934. function! s:status_update() range
  1935. let lines = getline(a:firstline, a:lastline)
  1936. let names = filter(map(lines, 's:extract_name(v:val, "[x-]", "")'), '!empty(v:val)')
  1937. if !empty(names)
  1938. echo
  1939. execute 'PlugUpdate' join(names)
  1940. endif
  1941. endfunction
  1942. function! s:is_preview_window_open()
  1943. silent! wincmd P
  1944. if &previewwindow
  1945. wincmd p
  1946. return 1
  1947. endif
  1948. endfunction
  1949. function! s:find_name(lnum)
  1950. for lnum in reverse(range(1, a:lnum))
  1951. let line = getline(lnum)
  1952. if empty(line)
  1953. return ''
  1954. endif
  1955. let name = s:extract_name(line, '-', '')
  1956. if !empty(name)
  1957. return name
  1958. endif
  1959. endfor
  1960. return ''
  1961. endfunction
  1962. function! s:preview_commit()
  1963. if b:plug_preview < 0
  1964. let b:plug_preview = !s:is_preview_window_open()
  1965. endif
  1966. let sha = matchstr(getline('.'), '^ \X*\zs[0-9a-f]\{7}')
  1967. if empty(sha)
  1968. return
  1969. endif
  1970. let name = s:find_name(line('.'))
  1971. if empty(name) || !has_key(g:plugs, name) || !isdirectory(g:plugs[name].dir)
  1972. return
  1973. endif
  1974. if exists('g:plug_pwindow') && !s:is_preview_window_open()
  1975. execute g:plug_pwindow
  1976. execute 'e' sha
  1977. else
  1978. execute 'pedit' sha
  1979. wincmd P
  1980. endif
  1981. setlocal previewwindow filetype=git buftype=nofile nobuflisted modifiable
  1982. execute 'silent %!cd' s:shellesc(g:plugs[name].dir) '&& git show --no-color --pretty=medium' sha
  1983. setlocal nomodifiable
  1984. nnoremap <silent> <buffer> q :q<cr>
  1985. wincmd p
  1986. endfunction
  1987. function! s:section(flags)
  1988. call search('\(^[x-] \)\@<=[^:]\+:', a:flags)
  1989. endfunction
  1990. function! s:format_git_log(line)
  1991. let indent = ' '
  1992. let tokens = split(a:line, nr2char(1))
  1993. if len(tokens) != 5
  1994. return indent.substitute(a:line, '\s*$', '', '')
  1995. endif
  1996. let [graph, sha, refs, subject, date] = tokens
  1997. let tag = matchstr(refs, 'tag: [^,)]\+')
  1998. let tag = empty(tag) ? ' ' : ' ('.tag.') '
  1999. return printf('%s%s%s%s%s (%s)', indent, graph, sha, tag, subject, date)
  2000. endfunction
  2001. function! s:append_ul(lnum, text)
  2002. call append(a:lnum, ['', a:text, repeat('-', len(a:text))])
  2003. endfunction
  2004. function! s:diff()
  2005. call s:prepare()
  2006. call append(0, ['Collecting changes ...', ''])
  2007. let cnts = [0, 0]
  2008. let bar = ''
  2009. let total = filter(copy(g:plugs), 's:is_managed(v:key) && isdirectory(v:val.dir)')
  2010. call s:progress_bar(2, bar, len(total))
  2011. for origin in [1, 0]
  2012. let plugs = reverse(sort(items(filter(copy(total), (origin ? '' : '!').'(has_key(v:val, "commit") || has_key(v:val, "tag"))'))))
  2013. if empty(plugs)
  2014. continue
  2015. endif
  2016. call s:append_ul(2, origin ? 'Pending updates:' : 'Last update:')
  2017. for [k, v] in plugs
  2018. let range = origin ? '..origin/'.v.branch : 'HEAD@{1}..'
  2019. 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)
  2020. if !empty(diff)
  2021. let ref = has_key(v, 'tag') ? (' (tag: '.v.tag.')') : has_key(v, 'commit') ? (' '.v.commit) : ''
  2022. call append(5, extend(['', '- '.k.':'.ref], map(s:lines(diff), 's:format_git_log(v:val)')))
  2023. let cnts[origin] += 1
  2024. endif
  2025. let bar .= '='
  2026. call s:progress_bar(2, bar, len(total))
  2027. normal! 2G
  2028. redraw
  2029. endfor
  2030. if !cnts[origin]
  2031. call append(5, ['', 'N/A'])
  2032. endif
  2033. endfor
  2034. call setline(1, printf('%d plugin(s) updated.', cnts[0])
  2035. \ . (cnts[1] ? printf(' %d plugin(s) have pending updates.', cnts[1]) : ''))
  2036. if cnts[0] || cnts[1]
  2037. nnoremap <silent> <buffer> <cr> :silent! call <SID>preview_commit()<cr>
  2038. nnoremap <silent> <buffer> o :silent! call <SID>preview_commit()<cr>
  2039. endif
  2040. if cnts[0]
  2041. nnoremap <silent> <buffer> X :call <SID>revert()<cr>
  2042. echo "Press 'X' on each block to revert the update"
  2043. endif
  2044. normal! gg
  2045. setlocal nomodifiable
  2046. endfunction
  2047. function! s:revert()
  2048. if search('^Pending updates', 'bnW')
  2049. return
  2050. endif
  2051. let name = s:find_name(line('.'))
  2052. if empty(name) || !has_key(g:plugs, name) ||
  2053. \ input(printf('Revert the update of %s? (y/N) ', name)) !~? '^y'
  2054. return
  2055. endif
  2056. call s:system('git reset --hard HEAD@{1} && git checkout '.s:esc(g:plugs[name].branch), g:plugs[name].dir)
  2057. setlocal modifiable
  2058. normal! "_dap
  2059. setlocal nomodifiable
  2060. echo 'Reverted'
  2061. endfunction
  2062. function! s:snapshot(force, ...) abort
  2063. call s:prepare()
  2064. setf vim
  2065. call append(0, ['" Generated by vim-plug',
  2066. \ '" '.strftime("%c"),
  2067. \ '" :source this file in vim to restore the snapshot',
  2068. \ '" or execute: vim -S snapshot.vim',
  2069. \ '', '', 'PlugUpdate!'])
  2070. 1
  2071. let anchor = line('$') - 3
  2072. let names = sort(keys(filter(copy(g:plugs),
  2073. \'has_key(v:val, "uri") && !has_key(v:val, "commit") && isdirectory(v:val.dir)')))
  2074. for name in reverse(names)
  2075. let sha = s:system_chomp('git rev-parse --short HEAD', g:plugs[name].dir)
  2076. if !empty(sha)
  2077. call append(anchor, printf("silent! let g:plugs['%s'].commit = '%s'", name, sha))
  2078. redraw
  2079. endif
  2080. endfor
  2081. if a:0 > 0
  2082. let fn = expand(a:1)
  2083. if filereadable(fn) && !(a:force || s:ask(a:1.' already exists. Overwrite?'))
  2084. return
  2085. endif
  2086. call writefile(getline(1, '$'), fn)
  2087. echo 'Saved as '.a:1
  2088. silent execute 'e' s:esc(fn)
  2089. setf vim
  2090. endif
  2091. endfunction
  2092. function! s:split_rtp()
  2093. return split(&rtp, '\\\@<!,')
  2094. endfunction
  2095. let s:first_rtp = s:escrtp(get(s:split_rtp(), 0, ''))
  2096. let s:last_rtp = s:escrtp(get(s:split_rtp(), -1, ''))
  2097. if exists('g:plugs')
  2098. let g:plugs_order = get(g:, 'plugs_order', keys(g:plugs))
  2099. call s:upgrade_specs()
  2100. call s:define_commands()
  2101. endif
  2102. let &cpo = s:cpo_save
  2103. unlet s:cpo_save