plug.vim 64 KB

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