plug.vim 68 KB

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