plug.vim 77 KB

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