plug.vim 69 KB

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