vim.spec 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250
  1. ##
  2. ## vim.spec -- OpenPKG RPM Package Specification
  3. ## Copyright (c) 2000-2016 OpenPKG Foundation e.V. <http://openpkg.net/>
  4. ##
  5. ## Permission to use, copy, modify, and distribute this software for
  6. ## any purpose with or without fee is hereby granted, provided that
  7. ## the above copyright notice and this permission notice appear in all
  8. ## copies.
  9. ##
  10. ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  11. ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  12. ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  13. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  14. ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  15. ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  16. ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  17. ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  18. ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  19. ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  20. ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  21. ## SUCH DAMAGE.
  22. ##
  23. # package versions
  24. %define V_vl 7.4
  25. %define V_vs 74
  26. %define V_pl 1987
  27. # package information
  28. Name: vim
  29. Summary: The Vi (Improved) Text Editor
  30. URL: http://www.vim.org/
  31. Vendor: Bram Moolenaar et al.
  32. Packager: OpenPKG Foundation e.V.
  33. Distribution: OpenPKG Community
  34. Class: CORE
  35. Group: Editor
  36. License: Charityware
  37. Version: %{V_vl}.%{V_pl}
  38. Release: 20160703
  39. # package options
  40. %option with_features normal
  41. %option with_multibyte yes
  42. %option with_perl no
  43. %option with_python no
  44. %option with_tcl no
  45. %option with_ruby no
  46. %option with_shell no
  47. # list of sources
  48. Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{V_vl}.tar.bz2
  49. Source2: rc.vim
  50. Source3: vimrc
  51. Patch0: vim.patch
  52. Patch1: vim.patch.shell
  53. Patch101: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.001
  54. Patch102: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.002
  55. Patch103: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.003
  56. Patch104: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.004
  57. Patch105: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.005
  58. Patch106: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.006
  59. Patch107: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.007
  60. Patch108: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.008
  61. Patch109: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.009
  62. Patch110: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.010
  63. Patch111: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.011
  64. Patch112: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.012
  65. Patch113: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.013
  66. Patch114: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.014
  67. Patch115: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.015
  68. Patch116: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.016
  69. Patch117: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.017
  70. Patch118: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.018
  71. Patch119: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.019
  72. Patch120: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.020
  73. Patch121: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.021
  74. Patch122: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.022
  75. Patch123: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.023
  76. Patch124: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.024
  77. Patch125: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.025
  78. Patch126: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.026
  79. Patch127: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.027
  80. Patch128: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.028
  81. Patch129: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.029
  82. Patch130: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.030
  83. Patch131: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.031
  84. Patch132: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.032
  85. Patch133: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.033
  86. Patch134: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.034
  87. Patch135: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.035
  88. Patch136: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.036
  89. Patch137: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.037
  90. Patch138: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.038
  91. Patch139: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.039
  92. Patch140: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.040
  93. Patch141: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.041
  94. Patch142: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.042
  95. Patch143: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.043
  96. Patch144: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.044
  97. Patch145: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.045
  98. Patch146: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.046
  99. Patch147: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.047
  100. Patch148: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.048
  101. Patch149: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.049
  102. Patch150: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.050
  103. Patch151: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.051
  104. Patch152: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.052
  105. Patch153: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.053
  106. Patch154: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.054
  107. Patch155: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.055
  108. Patch156: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.056
  109. Patch157: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.057
  110. Patch158: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.058
  111. Patch159: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.059
  112. Patch160: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.060
  113. Patch161: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.061
  114. Patch162: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.062
  115. Patch163: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.063
  116. Patch164: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.064
  117. Patch165: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.065
  118. Patch166: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.066
  119. Patch167: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.067
  120. Patch168: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.068
  121. Patch169: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.069
  122. Patch170: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.070
  123. Patch171: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.071
  124. Patch172: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.072
  125. Patch173: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.073
  126. Patch174: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.074
  127. Patch175: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.075
  128. Patch176: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.076
  129. Patch177: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.077
  130. Patch178: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.078
  131. Patch179: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.079
  132. Patch180: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.080
  133. Patch181: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.081
  134. Patch182: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.082
  135. Patch183: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.083
  136. Patch184: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.084
  137. Patch185: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.085
  138. Patch186: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.086
  139. Patch187: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.087
  140. Patch188: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.088
  141. Patch189: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.089
  142. Patch190: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.090
  143. Patch191: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.091
  144. Patch192: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.092
  145. Patch193: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.093
  146. Patch194: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.094
  147. Patch195: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.095
  148. Patch196: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.096
  149. Patch197: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.097
  150. Patch198: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.098
  151. Patch199: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.099
  152. Patch200: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.100
  153. Patch201: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.101
  154. Patch202: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.102
  155. Patch203: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.103
  156. Patch204: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.104
  157. Patch205: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.105
  158. Patch206: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.106
  159. Patch207: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.107
  160. Patch208: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.108
  161. Patch209: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.109
  162. Patch210: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.110
  163. Patch211: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.111
  164. Patch212: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.112
  165. Patch213: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.113
  166. Patch214: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.114
  167. Patch215: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.115
  168. Patch216: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.116
  169. Patch217: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.117
  170. Patch218: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.118
  171. Patch219: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.119
  172. Patch220: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.120
  173. Patch221: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.121
  174. Patch222: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.122
  175. Patch223: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.123
  176. Patch224: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.124
  177. Patch225: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.125
  178. Patch226: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.126
  179. Patch227: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.127
  180. Patch228: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.128
  181. Patch229: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.129
  182. Patch230: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.130
  183. Patch231: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.131
  184. Patch232: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.132
  185. Patch233: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.133
  186. Patch234: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.134
  187. Patch235: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.135
  188. Patch236: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.136
  189. Patch237: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.137
  190. Patch238: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.138
  191. Patch239: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.139
  192. Patch240: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.140
  193. Patch241: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.141
  194. Patch242: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.142
  195. Patch243: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.143
  196. Patch244: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.144
  197. Patch245: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.145
  198. Patch246: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.146
  199. Patch247: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.147
  200. Patch248: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.148
  201. Patch249: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.149
  202. Patch250: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.150
  203. Patch251: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.151
  204. Patch252: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.152
  205. Patch253: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.153
  206. Patch254: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.154
  207. Patch255: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.155
  208. Patch256: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.156
  209. Patch257: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.157
  210. Patch258: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.158
  211. Patch259: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.159
  212. Patch260: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.160
  213. Patch261: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.161
  214. Patch262: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.162
  215. Patch263: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.163
  216. Patch264: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.164
  217. Patch265: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.165
  218. Patch266: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.166
  219. Patch267: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.167
  220. Patch268: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.168
  221. Patch269: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.169
  222. Patch270: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.170
  223. Patch271: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.171
  224. Patch272: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.172
  225. Patch273: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.173
  226. Patch274: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.174
  227. Patch275: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.175
  228. Patch276: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.176
  229. Patch277: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.177
  230. Patch278: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.178
  231. Patch279: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.179
  232. Patch280: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.180
  233. Patch281: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.181
  234. Patch282: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.182
  235. Patch283: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.183
  236. Patch284: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.184
  237. Patch285: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.185
  238. Patch286: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.186
  239. Patch287: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.187
  240. Patch288: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.188
  241. Patch289: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.189
  242. Patch290: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.190
  243. Patch291: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.191
  244. Patch292: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.192
  245. Patch293: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.193
  246. Patch294: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.194
  247. Patch295: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.195
  248. Patch296: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.196
  249. Patch297: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.197
  250. Patch298: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.198
  251. Patch299: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.199
  252. Patch300: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.200
  253. Patch301: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.201
  254. Patch302: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.202
  255. Patch303: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.203
  256. Patch304: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.204
  257. Patch305: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.205
  258. Patch306: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.206
  259. Patch307: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.207
  260. Patch308: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.208
  261. Patch309: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.209
  262. Patch310: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.210
  263. Patch311: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.211
  264. Patch312: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.212
  265. Patch313: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.213
  266. Patch314: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.214
  267. Patch315: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.215
  268. Patch316: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.216
  269. Patch317: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.217
  270. Patch318: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.218
  271. Patch319: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.219
  272. Patch320: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.220
  273. Patch321: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.221
  274. Patch322: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.222
  275. Patch323: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.223
  276. Patch324: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.224
  277. Patch325: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.225
  278. Patch326: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.226
  279. Patch327: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.227
  280. Patch328: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.228
  281. Patch329: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.229
  282. Patch330: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.230
  283. Patch331: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.231
  284. Patch332: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.232
  285. Patch333: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.233
  286. Patch334: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.234
  287. Patch335: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.235
  288. Patch336: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.236
  289. Patch337: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.237
  290. Patch338: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.238
  291. Patch339: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.239
  292. Patch340: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.240
  293. Patch341: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.241
  294. Patch342: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.242
  295. Patch343: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.243
  296. Patch344: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.244
  297. Patch345: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.245
  298. Patch346: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.246
  299. Patch347: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.247
  300. Patch348: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.248
  301. Patch349: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.249
  302. Patch350: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.250
  303. Patch351: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.251
  304. Patch352: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.252
  305. Patch353: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.253
  306. Patch354: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.254
  307. Patch355: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.255
  308. Patch356: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.256
  309. Patch357: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.257
  310. Patch358: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.258
  311. Patch359: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.259
  312. Patch360: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.260
  313. Patch361: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.261
  314. Patch362: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.262
  315. Patch363: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.263
  316. Patch364: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.264
  317. Patch365: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.265
  318. Patch366: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.266
  319. Patch367: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.267
  320. Patch368: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.268
  321. Patch369: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.269
  322. Patch370: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.270
  323. Patch371: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.271
  324. Patch372: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.272
  325. Patch373: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.273
  326. Patch374: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.274
  327. Patch375: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.275
  328. Patch376: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.276
  329. Patch377: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.277
  330. Patch378: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.278
  331. Patch379: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.279
  332. Patch380: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.280
  333. Patch381: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.281
  334. Patch382: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.282
  335. Patch383: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.283
  336. Patch384: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.284
  337. Patch385: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.285
  338. Patch386: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.286
  339. Patch387: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.287
  340. Patch388: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.288
  341. Patch389: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.289
  342. Patch390: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.290
  343. Patch391: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.291
  344. Patch392: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.292
  345. Patch393: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.293
  346. Patch394: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.294
  347. Patch395: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.295
  348. Patch396: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.296
  349. Patch397: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.297
  350. Patch398: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.298
  351. Patch399: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.299
  352. Patch400: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.300
  353. Patch401: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.301
  354. Patch402: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.302
  355. Patch403: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.303
  356. Patch404: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.304
  357. Patch405: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.305
  358. Patch406: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.306
  359. Patch407: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.307
  360. Patch408: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.308
  361. Patch409: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.309
  362. Patch410: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.310
  363. Patch411: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.311
  364. Patch412: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.312
  365. Patch413: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.313
  366. Patch414: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.314
  367. Patch415: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.315
  368. Patch416: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.316
  369. Patch417: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.317
  370. Patch418: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.318
  371. Patch419: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.319
  372. Patch420: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.320
  373. Patch421: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.321
  374. Patch422: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.322
  375. Patch423: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.323
  376. Patch424: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.324
  377. Patch425: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.325
  378. Patch426: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.326
  379. Patch427: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.327
  380. Patch428: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.328
  381. Patch429: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.329
  382. Patch430: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.330
  383. Patch431: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.331
  384. Patch432: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.332
  385. Patch433: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.333
  386. Patch434: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.334
  387. Patch435: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.335
  388. Patch436: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.336
  389. Patch437: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.337
  390. Patch438: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.338
  391. Patch439: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.339
  392. Patch440: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.340
  393. Patch441: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.341
  394. Patch442: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.342
  395. Patch443: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.343
  396. Patch444: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.344
  397. Patch445: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.345
  398. Patch446: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.346
  399. Patch447: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.347
  400. Patch448: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.348
  401. Patch449: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.349
  402. Patch450: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.350
  403. Patch451: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.351
  404. Patch452: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.352
  405. Patch453: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.353
  406. Patch454: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.354
  407. Patch455: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.355
  408. Patch456: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.356
  409. Patch457: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.357
  410. Patch458: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.358
  411. Patch459: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.359
  412. Patch460: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.360
  413. Patch461: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.361
  414. Patch462: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.362
  415. Patch463: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.363
  416. Patch464: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.364
  417. Patch465: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.365
  418. Patch466: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.366
  419. Patch467: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.367
  420. Patch468: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.368
  421. Patch469: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.369
  422. Patch470: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.370
  423. Patch471: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.371
  424. Patch472: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.372
  425. Patch473: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.373
  426. Patch474: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.374
  427. Patch475: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.375
  428. Patch476: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.376
  429. Patch477: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.377
  430. Patch478: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.378
  431. Patch479: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.379
  432. Patch480: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.380
  433. Patch481: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.381
  434. Patch482: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.382
  435. Patch483: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.383
  436. Patch484: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.384
  437. Patch485: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.385
  438. Patch486: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.386
  439. Patch487: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.387
  440. Patch488: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.388
  441. Patch489: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.389
  442. Patch490: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.390
  443. Patch491: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.391
  444. Patch492: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.392
  445. Patch493: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.393
  446. Patch494: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.394
  447. Patch495: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.395
  448. Patch496: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.396
  449. Patch497: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.397
  450. Patch498: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.398
  451. Patch499: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.399
  452. Patch500: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.400
  453. Patch501: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.401
  454. Patch502: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.402
  455. Patch503: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.403
  456. Patch504: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.404
  457. Patch505: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.405
  458. Patch506: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.406
  459. Patch507: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.407
  460. Patch508: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.408
  461. Patch509: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.409
  462. Patch510: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.410
  463. Patch511: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.411
  464. Patch512: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.412
  465. Patch513: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.413
  466. Patch514: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.414
  467. Patch515: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.415
  468. Patch516: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.416
  469. Patch517: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.417
  470. Patch518: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.418
  471. Patch519: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.419
  472. Patch520: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.420
  473. Patch521: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.421
  474. Patch522: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.422
  475. Patch523: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.423
  476. Patch524: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.424
  477. Patch525: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.425
  478. Patch526: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.426
  479. Patch527: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.427
  480. Patch528: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.428
  481. Patch529: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.429
  482. Patch530: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.430
  483. Patch531: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.431
  484. Patch532: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.432
  485. Patch533: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.433
  486. Patch534: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.434
  487. Patch535: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.435
  488. Patch536: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.436
  489. Patch537: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.437
  490. Patch538: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.438
  491. Patch539: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.439
  492. Patch540: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.440
  493. Patch541: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.441
  494. Patch542: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.442
  495. Patch543: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.443
  496. Patch544: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.444
  497. Patch545: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.445
  498. Patch546: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.446
  499. Patch547: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.447
  500. Patch548: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.448
  501. Patch549: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.449
  502. Patch550: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.450
  503. Patch551: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.451
  504. Patch552: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.452
  505. Patch553: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.453
  506. Patch554: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.454
  507. Patch555: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.455
  508. Patch556: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.456
  509. Patch557: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.457
  510. Patch558: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.458
  511. Patch559: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.459
  512. Patch560: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.460
  513. Patch561: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.461
  514. Patch562: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.462
  515. Patch563: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.463
  516. Patch564: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.464
  517. Patch565: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.465
  518. Patch566: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.466
  519. Patch567: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.467
  520. Patch568: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.468
  521. Patch569: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.469
  522. Patch570: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.470
  523. Patch571: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.471
  524. Patch572: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.472
  525. Patch573: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.473
  526. Patch574: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.474
  527. Patch575: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.475
  528. Patch576: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.476
  529. Patch577: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.477
  530. Patch578: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.478
  531. Patch579: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.479
  532. Patch580: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.480
  533. Patch581: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.481
  534. Patch582: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.482
  535. Patch583: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.483
  536. Patch584: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.484
  537. Patch585: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.485
  538. Patch586: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.486
  539. Patch587: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.487
  540. Patch588: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.488
  541. Patch589: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.489
  542. Patch590: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.490
  543. Patch591: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.491
  544. Patch592: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.492
  545. Patch593: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.493
  546. Patch594: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.494
  547. Patch595: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.495
  548. Patch596: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.496
  549. Patch597: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.497
  550. Patch598: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.498
  551. Patch599: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.499
  552. Patch600: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.500
  553. Patch601: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.501
  554. Patch602: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.502
  555. Patch603: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.503
  556. Patch604: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.504
  557. Patch605: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.505
  558. Patch606: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.506
  559. Patch607: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.507
  560. Patch608: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.508
  561. Patch609: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.509
  562. Patch610: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.510
  563. Patch611: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.511
  564. Patch612: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.512
  565. Patch613: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.513
  566. Patch614: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.514
  567. Patch615: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.515
  568. Patch616: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.516
  569. Patch617: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.517
  570. Patch618: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.518
  571. Patch619: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.519
  572. Patch620: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.520
  573. Patch621: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.521
  574. Patch622: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.522
  575. Patch623: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.523
  576. Patch624: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.524
  577. Patch625: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.525
  578. Patch626: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.526
  579. Patch627: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.527
  580. Patch628: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.528
  581. Patch629: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.529
  582. Patch630: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.530
  583. Patch631: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.531
  584. Patch632: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.532
  585. Patch633: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.533
  586. Patch634: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.534
  587. Patch635: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.535
  588. Patch636: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.536
  589. Patch637: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.537
  590. Patch638: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.538
  591. Patch639: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.539
  592. Patch640: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.540
  593. Patch641: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.541
  594. Patch642: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.542
  595. Patch643: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.543
  596. Patch644: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.544
  597. Patch645: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.545
  598. Patch646: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.546
  599. Patch647: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.547
  600. Patch648: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.548
  601. Patch649: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.549
  602. Patch650: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.550
  603. Patch651: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.551
  604. Patch652: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.552
  605. Patch653: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.553
  606. Patch654: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.554
  607. Patch655: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.555
  608. Patch656: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.556
  609. Patch657: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.557
  610. Patch658: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.558
  611. Patch659: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.559
  612. Patch660: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.560
  613. Patch661: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.561
  614. Patch662: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.562
  615. Patch663: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.563
  616. Patch664: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.564
  617. Patch665: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.565
  618. Patch666: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.566
  619. Patch667: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.567
  620. Patch668: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.568
  621. Patch669: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.569
  622. Patch670: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.570
  623. Patch671: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.571
  624. Patch672: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.572
  625. Patch673: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.573
  626. Patch674: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.574
  627. Patch675: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.575
  628. Patch676: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.576
  629. Patch677: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.577
  630. Patch678: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.578
  631. Patch679: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.579
  632. Patch680: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.580
  633. Patch681: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.581
  634. Patch682: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.582
  635. Patch683: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.583
  636. Patch684: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.584
  637. Patch685: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.585
  638. Patch686: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.586
  639. Patch687: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.587
  640. Patch688: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.588
  641. Patch689: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.589
  642. Patch690: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.590
  643. Patch691: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.591
  644. Patch692: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.592
  645. Patch693: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.593
  646. Patch694: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.594
  647. Patch695: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.595
  648. Patch696: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.596
  649. Patch697: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.597
  650. Patch698: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.598
  651. Patch699: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.599
  652. Patch700: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.600
  653. Patch701: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.601
  654. Patch702: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.602
  655. Patch703: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.603
  656. Patch704: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.604
  657. Patch705: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.605
  658. Patch706: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.606
  659. Patch707: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.607
  660. Patch708: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.608
  661. Patch709: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.609
  662. Patch710: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.610
  663. Patch711: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.611
  664. Patch712: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.612
  665. Patch713: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.613
  666. Patch714: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.614
  667. Patch715: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.615
  668. Patch716: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.616
  669. Patch717: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.617
  670. Patch718: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.618
  671. Patch719: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.619
  672. Patch720: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.620
  673. Patch721: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.621
  674. Patch722: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.622
  675. Patch723: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.623
  676. Patch724: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.624
  677. Patch725: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.625
  678. Patch726: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.626
  679. Patch727: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.627
  680. Patch728: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.628
  681. Patch729: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.629
  682. Patch730: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.630
  683. Patch731: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.631
  684. Patch732: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.632
  685. Patch733: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.633
  686. Patch734: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.634
  687. Patch735: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.635
  688. Patch736: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.636
  689. Patch737: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.637
  690. Patch738: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.638
  691. Patch739: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.639
  692. Patch740: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.640
  693. Patch741: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.641
  694. Patch742: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.642
  695. Patch743: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.643
  696. Patch744: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.644
  697. Patch745: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.645
  698. Patch746: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.646
  699. Patch747: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.647
  700. Patch748: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.648
  701. Patch749: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.649
  702. Patch750: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.650
  703. Patch751: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.651
  704. Patch752: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.652
  705. Patch753: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.653
  706. Patch754: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.654
  707. Patch755: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.655
  708. Patch756: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.656
  709. Patch757: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.657
  710. Patch758: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.658
  711. Patch759: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.659
  712. Patch760: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.660
  713. Patch761: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.661
  714. Patch762: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.662
  715. Patch763: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.663
  716. Patch764: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.664
  717. Patch765: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.665
  718. Patch766: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.666
  719. Patch767: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.667
  720. Patch768: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.668
  721. Patch769: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.669
  722. Patch770: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.670
  723. Patch771: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.671
  724. Patch772: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.672
  725. Patch773: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.673
  726. Patch774: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.674
  727. Patch775: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.675
  728. Patch776: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.676
  729. Patch777: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.677
  730. Patch778: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.678
  731. Patch779: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.679
  732. Patch780: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.680
  733. Patch781: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.681
  734. Patch782: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.682
  735. Patch783: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.683
  736. Patch784: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.684
  737. Patch785: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.685
  738. Patch786: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.686
  739. Patch787: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.687
  740. Patch788: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.688
  741. Patch789: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.689
  742. Patch790: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.690
  743. Patch791: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.691
  744. Patch792: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.692
  745. Patch793: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.693
  746. Patch794: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.694
  747. Patch795: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.695
  748. Patch796: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.696
  749. Patch797: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.697
  750. Patch798: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.698
  751. Patch799: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.699
  752. Patch800: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.700
  753. Patch801: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.701
  754. Patch802: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.702
  755. Patch803: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.703
  756. Patch804: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.704
  757. Patch805: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.705
  758. Patch806: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.706
  759. Patch807: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.707
  760. Patch808: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.708
  761. Patch809: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.709
  762. Patch810: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.710
  763. Patch811: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.711
  764. Patch812: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.712
  765. Patch813: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.713
  766. Patch814: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.714
  767. Patch815: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.715
  768. Patch816: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.716
  769. Patch817: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.717
  770. Patch818: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.718
  771. Patch819: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.719
  772. Patch820: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.720
  773. Patch821: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.721
  774. Patch822: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.722
  775. Patch823: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.723
  776. Patch824: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.724
  777. Patch825: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.725
  778. Patch826: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.726
  779. Patch827: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.727
  780. Patch828: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.728
  781. Patch829: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.729
  782. Patch830: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.730
  783. Patch831: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.731
  784. Patch832: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.732
  785. Patch833: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.733
  786. Patch834: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.734
  787. Patch835: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.735
  788. Patch836: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.736
  789. Patch837: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.737
  790. Patch838: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.738
  791. Patch839: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.739
  792. Patch840: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.740
  793. Patch841: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.741
  794. Patch842: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.742
  795. Patch843: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.743
  796. Patch844: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.744
  797. Patch845: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.745
  798. Patch846: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.746
  799. Patch847: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.747
  800. Patch848: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.748
  801. Patch849: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.749
  802. Patch850: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.750
  803. Patch851: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.751
  804. Patch852: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.752
  805. Patch853: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.753
  806. Patch854: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.754
  807. Patch855: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.755
  808. Patch856: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.756
  809. Patch857: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.757
  810. Patch858: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.758
  811. Patch859: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.759
  812. Patch860: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.760
  813. Patch861: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.761
  814. Patch862: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.762
  815. Patch863: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.763
  816. Patch864: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.764
  817. Patch865: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.765
  818. Patch866: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.766
  819. Patch867: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.767
  820. Patch868: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.768
  821. Patch869: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.769
  822. Patch870: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.770
  823. Patch871: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.771
  824. Patch872: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.772
  825. Patch873: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.773
  826. Patch874: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.774
  827. Patch875: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.775
  828. Patch876: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.776
  829. Patch877: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.777
  830. Patch878: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.778
  831. Patch879: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.779
  832. Patch880: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.780
  833. Patch881: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.781
  834. Patch882: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.782
  835. Patch883: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.783
  836. Patch884: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.784
  837. Patch885: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.785
  838. Patch886: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.786
  839. Patch887: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.787
  840. Patch888: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.788
  841. Patch889: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.789
  842. Patch890: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.790
  843. Patch891: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.791
  844. Patch892: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.792
  845. Patch893: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.793
  846. Patch894: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.794
  847. Patch895: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.795
  848. Patch896: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.796
  849. Patch897: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.797
  850. Patch898: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.798
  851. Patch899: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.799
  852. Patch900: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.800
  853. Patch901: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.801
  854. Patch902: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.802
  855. Patch903: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.803
  856. Patch904: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.804
  857. Patch905: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.805
  858. Patch906: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.806
  859. Patch907: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.807
  860. Patch908: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.808
  861. Patch909: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.809
  862. Patch910: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.810
  863. Patch911: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.811
  864. Patch912: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.812
  865. Patch913: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.813
  866. Patch914: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.814
  867. Patch915: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.815
  868. Patch916: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.816
  869. Patch917: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.817
  870. Patch918: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.818
  871. Patch919: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.819
  872. Patch920: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.820
  873. Patch921: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.821
  874. Patch922: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.822
  875. Patch923: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.823
  876. Patch924: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.824
  877. Patch925: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.825
  878. Patch926: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.826
  879. Patch927: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.827
  880. Patch928: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.828
  881. Patch929: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.829
  882. Patch930: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.830
  883. Patch931: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.831
  884. Patch932: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.832
  885. Patch933: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.833
  886. Patch934: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.834
  887. Patch935: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.835
  888. Patch936: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.836
  889. Patch937: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.837
  890. Patch938: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.838
  891. Patch939: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.839
  892. Patch940: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.840
  893. Patch941: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.841
  894. Patch942: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.842
  895. Patch943: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.843
  896. Patch944: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.844
  897. Patch945: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.845
  898. Patch946: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.846
  899. Patch947: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.847
  900. Patch948: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.848
  901. Patch949: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.849
  902. Patch950: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.850
  903. Patch951: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.851
  904. Patch952: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.852
  905. Patch953: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.853
  906. Patch954: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.854
  907. Patch955: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.855
  908. Patch956: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.856
  909. Patch957: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.857
  910. Patch958: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.858
  911. Patch959: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.859
  912. Patch960: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.860
  913. Patch961: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.861
  914. Patch962: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.862
  915. Patch963: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.863
  916. Patch964: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.864
  917. Patch965: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.865
  918. Patch966: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.866
  919. Patch967: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.867
  920. Patch968: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.868
  921. Patch969: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.869
  922. Patch970: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.870
  923. Patch971: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.871
  924. Patch972: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.872
  925. Patch973: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.873
  926. Patch974: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.874
  927. Patch975: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.875
  928. Patch976: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.876
  929. Patch977: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.877
  930. Patch978: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.878
  931. Patch979: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.879
  932. Patch980: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.880
  933. Patch981: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.881
  934. Patch982: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.882
  935. Patch983: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.883
  936. Patch984: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.884
  937. Patch985: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.885
  938. Patch986: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.886
  939. Patch987: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.887
  940. Patch988: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.888
  941. Patch989: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.889
  942. Patch990: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.890
  943. Patch991: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.891
  944. Patch992: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.892
  945. Patch993: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.893
  946. Patch994: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.894
  947. Patch995: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.895
  948. Patch996: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.896
  949. Patch997: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.897
  950. Patch998: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.898
  951. Patch999: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.899
  952. Patch1000: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.900
  953. Patch1001: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.901
  954. Patch1002: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.902
  955. Patch1003: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.903
  956. Patch1004: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.904
  957. Patch1005: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.905
  958. Patch1006: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.906
  959. Patch1007: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.907
  960. Patch1008: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.908
  961. Patch1009: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.909
  962. Patch1010: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.910
  963. Patch1011: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.911
  964. Patch1012: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.912
  965. Patch1013: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.913
  966. Patch1014: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.914
  967. Patch1015: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.915
  968. Patch1016: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.916
  969. Patch1017: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.917
  970. Patch1018: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.918
  971. Patch1019: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.919
  972. Patch1020: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.920
  973. Patch1021: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.921
  974. Patch1022: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.922
  975. Patch1023: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.923
  976. Patch1024: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.924
  977. Patch1025: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.925
  978. Patch1026: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.926
  979. Patch1027: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.927
  980. Patch1028: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.928
  981. Patch1029: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.929
  982. Patch1030: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.930
  983. Patch1031: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.931
  984. Patch1032: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.932
  985. Patch1033: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.933
  986. Patch1034: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.934
  987. Patch1035: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.935
  988. Patch1036: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.936
  989. Patch1037: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.937
  990. Patch1038: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.938
  991. Patch1039: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.939
  992. Patch1040: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.940
  993. Patch1041: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.941
  994. Patch1042: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.942
  995. Patch1043: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.943
  996. Patch1044: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.944
  997. Patch1045: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.945
  998. Patch1046: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.946
  999. Patch1047: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.947
  1000. Patch1048: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.948
  1001. Patch1049: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.949
  1002. Patch1050: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.950
  1003. Patch1051: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.951
  1004. Patch1052: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.952
  1005. Patch1053: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.953
  1006. Patch1054: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.954
  1007. Patch1055: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.955
  1008. Patch1056: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.956
  1009. Patch1057: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.957
  1010. Patch1058: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.958
  1011. Patch1059: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.959
  1012. Patch1060: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.960
  1013. Patch1061: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.961
  1014. Patch1062: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.962
  1015. Patch1063: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.963
  1016. Patch1064: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.964
  1017. Patch1065: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.965
  1018. Patch1066: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.966
  1019. Patch1067: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.967
  1020. Patch1068: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.968
  1021. Patch1069: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.969
  1022. Patch1070: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.970
  1023. Patch1071: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.971
  1024. Patch1072: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.972
  1025. Patch1073: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.973
  1026. Patch1074: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.974
  1027. Patch1075: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.975
  1028. Patch1076: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.976
  1029. Patch1077: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.977
  1030. Patch1078: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.978
  1031. Patch1079: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.979
  1032. Patch1080: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.980
  1033. Patch1081: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.981
  1034. Patch1082: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.982
  1035. Patch1083: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.983
  1036. Patch1084: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.984
  1037. Patch1085: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.985
  1038. Patch1086: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.986
  1039. Patch1087: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.987
  1040. Patch1088: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.988
  1041. Patch1089: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.989
  1042. Patch1090: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.990
  1043. Patch1091: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.991
  1044. Patch1092: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.992
  1045. Patch1093: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.993
  1046. Patch1094: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.994
  1047. Patch1095: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.995
  1048. Patch1096: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.996
  1049. Patch1097: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.997
  1050. Patch1098: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.998
  1051. Patch1099: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.999
  1052. Patch1100: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1000
  1053. Patch1101: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1001
  1054. Patch1102: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1002
  1055. Patch1103: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1003
  1056. Patch1104: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1004
  1057. Patch1105: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1005
  1058. Patch1106: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1006
  1059. Patch1107: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1007
  1060. Patch1108: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1008
  1061. Patch1109: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1009
  1062. Patch1110: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1010
  1063. Patch1111: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1011
  1064. Patch1112: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1012
  1065. Patch1113: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1013
  1066. Patch1114: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1014
  1067. Patch1115: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1015
  1068. Patch1116: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1016
  1069. Patch1117: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1017
  1070. Patch1118: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1018
  1071. Patch1119: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1019
  1072. Patch1120: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1020
  1073. Patch1121: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1021
  1074. Patch1122: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1022
  1075. Patch1123: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1023
  1076. Patch1124: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1024
  1077. Patch1125: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1025
  1078. Patch1126: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1026
  1079. Patch1127: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1027
  1080. Patch1128: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1028
  1081. Patch1129: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1029
  1082. Patch1130: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1030
  1083. Patch1131: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1031
  1084. Patch1132: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1032
  1085. Patch1133: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1033
  1086. Patch1134: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1034
  1087. Patch1135: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1035
  1088. Patch1136: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1036
  1089. Patch1137: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1037
  1090. Patch1138: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1038
  1091. Patch1139: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1039
  1092. Patch1140: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1040
  1093. Patch1141: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1041
  1094. Patch1142: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1042
  1095. Patch1143: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1043
  1096. Patch1144: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1044
  1097. Patch1145: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1045
  1098. Patch1146: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1046
  1099. Patch1147: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1047
  1100. Patch1148: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1048
  1101. Patch1149: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1049
  1102. Patch1150: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1050
  1103. Patch1151: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1051
  1104. Patch1152: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1052
  1105. Patch1153: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1053
  1106. Patch1154: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1054
  1107. Patch1155: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1055
  1108. Patch1156: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1056
  1109. Patch1157: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1057
  1110. Patch1158: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1058
  1111. Patch1159: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1059
  1112. Patch1160: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1060
  1113. Patch1161: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1061
  1114. Patch1162: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1062
  1115. Patch1163: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1063
  1116. Patch1164: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1064
  1117. Patch1165: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1065
  1118. Patch1166: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1066
  1119. Patch1167: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1067
  1120. Patch1168: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1068
  1121. Patch1169: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1069
  1122. Patch1170: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1070
  1123. Patch1171: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1071
  1124. Patch1172: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1072
  1125. Patch1173: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1073
  1126. Patch1174: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1074
  1127. Patch1175: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1075
  1128. Patch1176: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1076
  1129. Patch1177: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1077
  1130. Patch1178: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1078
  1131. Patch1179: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1079
  1132. Patch1180: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1080
  1133. Patch1181: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1081
  1134. Patch1182: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1082
  1135. Patch1183: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1083
  1136. Patch1184: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1084
  1137. Patch1185: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1085
  1138. Patch1186: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1086
  1139. Patch1187: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1087
  1140. Patch1188: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1088
  1141. Patch1189: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1089
  1142. Patch1190: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1090
  1143. Patch1191: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1091
  1144. Patch1192: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1092
  1145. Patch1193: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1093
  1146. Patch1194: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1094
  1147. Patch1195: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1095
  1148. Patch1196: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1096
  1149. Patch1197: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1097
  1150. Patch1198: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1098
  1151. Patch1199: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1099
  1152. Patch1200: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1100
  1153. Patch1201: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1101
  1154. Patch1202: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1102
  1155. Patch1203: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1103
  1156. Patch1204: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1104
  1157. Patch1205: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1105
  1158. Patch1206: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1106
  1159. Patch1207: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1107
  1160. Patch1208: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1108
  1161. Patch1209: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1109
  1162. Patch1210: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1110
  1163. Patch1211: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1111
  1164. Patch1212: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1112
  1165. Patch1213: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1113
  1166. Patch1214: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1114
  1167. Patch1215: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1115
  1168. Patch1216: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1116
  1169. Patch1217: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1117
  1170. Patch1218: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1118
  1171. Patch1219: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1119
  1172. Patch1220: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1120
  1173. Patch1221: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1121
  1174. Patch1222: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1122
  1175. Patch1223: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1123
  1176. Patch1224: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1124
  1177. Patch1225: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1125
  1178. Patch1226: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1126
  1179. Patch1227: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1127
  1180. Patch1228: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1128
  1181. Patch1229: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1129
  1182. Patch1230: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1130
  1183. Patch1231: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1131
  1184. Patch1232: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1132
  1185. Patch1233: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1133
  1186. Patch1234: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1134
  1187. Patch1235: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1135
  1188. Patch1236: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1136
  1189. Patch1237: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1137
  1190. Patch1238: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1138
  1191. Patch1239: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1139
  1192. Patch1240: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1140
  1193. Patch1241: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1141
  1194. Patch1242: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1142
  1195. Patch1243: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1143
  1196. Patch1244: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1144
  1197. Patch1245: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1145
  1198. Patch1246: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1146
  1199. Patch1247: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1147
  1200. Patch1248: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1148
  1201. Patch1249: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1149
  1202. Patch1250: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1150
  1203. Patch1251: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1151
  1204. Patch1252: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1152
  1205. Patch1253: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1153
  1206. Patch1254: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1154
  1207. Patch1255: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1155
  1208. Patch1256: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1156
  1209. Patch1257: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1157
  1210. Patch1258: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1158
  1211. Patch1259: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1159
  1212. Patch1260: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1160
  1213. Patch1261: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1161
  1214. Patch1262: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1162
  1215. Patch1263: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1163
  1216. Patch1264: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1164
  1217. Patch1265: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1165
  1218. Patch1266: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1166
  1219. Patch1267: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1167
  1220. Patch1268: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1168
  1221. Patch1269: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1169
  1222. Patch1270: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1170
  1223. Patch1271: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1171
  1224. Patch1272: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1172
  1225. Patch1273: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1173
  1226. Patch1274: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1174
  1227. Patch1275: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1175
  1228. Patch1276: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1176
  1229. Patch1277: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1177
  1230. Patch1278: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1178
  1231. Patch1279: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1179
  1232. Patch1280: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1180
  1233. Patch1281: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1181
  1234. Patch1282: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1182
  1235. Patch1283: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1183
  1236. Patch1284: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1184
  1237. Patch1285: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1185
  1238. Patch1286: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1186
  1239. Patch1287: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1187
  1240. Patch1288: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1188
  1241. Patch1289: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1189
  1242. Patch1290: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1190
  1243. Patch1291: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1191
  1244. Patch1292: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1192
  1245. Patch1293: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1193
  1246. Patch1294: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1194
  1247. Patch1295: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1195
  1248. Patch1296: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1196
  1249. Patch1297: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1197
  1250. Patch1298: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1198
  1251. Patch1299: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1199
  1252. Patch1300: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1200
  1253. Patch1301: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1201
  1254. Patch1302: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1202
  1255. Patch1303: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1203
  1256. Patch1304: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1204
  1257. Patch1305: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1205
  1258. Patch1306: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1206
  1259. Patch1307: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1207
  1260. Patch1308: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1208
  1261. Patch1309: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1209
  1262. Patch1310: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1210
  1263. Patch1311: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1211
  1264. Patch1312: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1212
  1265. Patch1313: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1213
  1266. Patch1314: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1214
  1267. Patch1315: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1215
  1268. Patch1316: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1216
  1269. Patch1317: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1217
  1270. Patch1318: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1218
  1271. Patch1319: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1219
  1272. Patch1320: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1220
  1273. Patch1321: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1221
  1274. Patch1322: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1222
  1275. Patch1323: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1223
  1276. Patch1324: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1224
  1277. Patch1325: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1225
  1278. Patch1326: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1226
  1279. Patch1327: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1227
  1280. Patch1328: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1228
  1281. Patch1329: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1229
  1282. Patch1330: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1230
  1283. Patch1331: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1231
  1284. Patch1332: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1232
  1285. Patch1333: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1233
  1286. Patch1334: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1234
  1287. Patch1335: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1235
  1288. Patch1336: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1236
  1289. Patch1337: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1237
  1290. Patch1338: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1238
  1291. Patch1339: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1239
  1292. Patch1340: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1240
  1293. Patch1341: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1241
  1294. Patch1342: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1242
  1295. Patch1343: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1243
  1296. Patch1344: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1244
  1297. Patch1345: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1245
  1298. Patch1346: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1246
  1299. Patch1347: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1247
  1300. Patch1348: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1248
  1301. Patch1349: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1249
  1302. Patch1350: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1250
  1303. Patch1351: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1251
  1304. Patch1352: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1252
  1305. Patch1353: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1253
  1306. Patch1354: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1254
  1307. Patch1355: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1255
  1308. Patch1356: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1256
  1309. Patch1357: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1257
  1310. Patch1358: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1258
  1311. Patch1359: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1259
  1312. Patch1360: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1260
  1313. Patch1361: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1261
  1314. Patch1362: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1262
  1315. Patch1363: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1263
  1316. Patch1364: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1264
  1317. Patch1365: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1265
  1318. Patch1366: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1266
  1319. Patch1367: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1267
  1320. Patch1368: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1268
  1321. Patch1369: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1269
  1322. Patch1370: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1270
  1323. Patch1371: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1271
  1324. Patch1372: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1272
  1325. Patch1373: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1273
  1326. Patch1374: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1274
  1327. Patch1375: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1275
  1328. Patch1376: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1276
  1329. Patch1377: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1277
  1330. Patch1378: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1278
  1331. Patch1379: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1279
  1332. Patch1380: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1280
  1333. Patch1381: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1281
  1334. Patch1382: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1282
  1335. Patch1383: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1283
  1336. Patch1384: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1284
  1337. Patch1385: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1285
  1338. Patch1386: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1286
  1339. Patch1387: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1287
  1340. Patch1388: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1288
  1341. Patch1389: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1289
  1342. Patch1390: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1290
  1343. Patch1391: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1291
  1344. Patch1392: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1292
  1345. Patch1393: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1293
  1346. Patch1394: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1294
  1347. Patch1395: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1295
  1348. Patch1396: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1296
  1349. Patch1397: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1297
  1350. Patch1398: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1298
  1351. Patch1399: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1299
  1352. Patch1400: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1300
  1353. Patch1401: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1301
  1354. Patch1402: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1302
  1355. Patch1403: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1303
  1356. Patch1404: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1304
  1357. Patch1405: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1305
  1358. Patch1406: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1306
  1359. Patch1407: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1307
  1360. Patch1408: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1308
  1361. Patch1409: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1309
  1362. Patch1410: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1310
  1363. Patch1411: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1311
  1364. Patch1412: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1312
  1365. Patch1413: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1313
  1366. Patch1414: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1314
  1367. Patch1415: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1315
  1368. Patch1416: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1316
  1369. Patch1417: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1317
  1370. Patch1418: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1318
  1371. Patch1419: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1319
  1372. Patch1420: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1320
  1373. Patch1421: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1321
  1374. Patch1422: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1322
  1375. Patch1423: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1323
  1376. Patch1424: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1324
  1377. Patch1425: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1325
  1378. Patch1426: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1326
  1379. Patch1427: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1327
  1380. Patch1428: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1328
  1381. Patch1429: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1329
  1382. Patch1430: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1330
  1383. Patch1431: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1331
  1384. Patch1432: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1332
  1385. Patch1433: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1333
  1386. Patch1434: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1334
  1387. Patch1435: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1335
  1388. Patch1436: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1336
  1389. Patch1437: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1337
  1390. Patch1438: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1338
  1391. Patch1439: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1339
  1392. Patch1440: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1340
  1393. Patch1441: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1341
  1394. Patch1442: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1342
  1395. Patch1443: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1343
  1396. Patch1444: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1344
  1397. Patch1445: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1345
  1398. Patch1446: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1346
  1399. Patch1447: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1347
  1400. Patch1448: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1348
  1401. Patch1449: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1349
  1402. Patch1450: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1350
  1403. Patch1451: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1351
  1404. Patch1452: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1352
  1405. Patch1453: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1353
  1406. Patch1454: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1354
  1407. Patch1455: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1355
  1408. Patch1456: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1356
  1409. Patch1457: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1357
  1410. Patch1458: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1358
  1411. Patch1459: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1359
  1412. Patch1460: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1360
  1413. Patch1461: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1361
  1414. Patch1462: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1362
  1415. Patch1463: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1363
  1416. Patch1464: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1364
  1417. Patch1465: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1365
  1418. Patch1466: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1366
  1419. Patch1467: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1367
  1420. Patch1468: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1368
  1421. Patch1469: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1369
  1422. Patch1470: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1370
  1423. Patch1471: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1371
  1424. Patch1472: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1372
  1425. Patch1473: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1373
  1426. Patch1474: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1374
  1427. Patch1475: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1375
  1428. Patch1476: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1376
  1429. Patch1477: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1377
  1430. Patch1478: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1378
  1431. Patch1479: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1379
  1432. Patch1480: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1380
  1433. Patch1481: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1381
  1434. Patch1482: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1382
  1435. Patch1483: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1383
  1436. Patch1484: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1384
  1437. Patch1485: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1385
  1438. Patch1486: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1386
  1439. Patch1487: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1387
  1440. Patch1488: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1388
  1441. Patch1489: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1389
  1442. Patch1490: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1390
  1443. Patch1491: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1391
  1444. Patch1492: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1392
  1445. Patch1493: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1393
  1446. Patch1494: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1394
  1447. Patch1495: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1395
  1448. Patch1496: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1396
  1449. Patch1497: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1397
  1450. Patch1498: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1398
  1451. Patch1499: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1399
  1452. Patch1500: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1400
  1453. Patch1501: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1401
  1454. Patch1502: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1402
  1455. Patch1503: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1403
  1456. Patch1504: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1404
  1457. Patch1505: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1405
  1458. Patch1506: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1406
  1459. Patch1507: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1407
  1460. Patch1508: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1408
  1461. Patch1509: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1409
  1462. Patch1510: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1410
  1463. Patch1511: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1411
  1464. Patch1512: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1412
  1465. Patch1513: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1413
  1466. Patch1514: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1414
  1467. Patch1515: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1415
  1468. Patch1516: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1416
  1469. Patch1517: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1417
  1470. Patch1518: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1418
  1471. Patch1519: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1419
  1472. Patch1520: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1420
  1473. Patch1521: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1421
  1474. Patch1522: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1422
  1475. Patch1523: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1423
  1476. Patch1524: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1424
  1477. Patch1525: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1425
  1478. Patch1526: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1426
  1479. Patch1527: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1427
  1480. Patch1528: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1428
  1481. Patch1529: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1429
  1482. Patch1530: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1430
  1483. Patch1531: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1431
  1484. Patch1532: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1432
  1485. Patch1533: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1433
  1486. Patch1534: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1434
  1487. Patch1535: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1435
  1488. Patch1536: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1436
  1489. Patch1537: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1437
  1490. Patch1538: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1438
  1491. Patch1539: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1439
  1492. Patch1540: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1440
  1493. Patch1541: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1441
  1494. Patch1542: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1442
  1495. Patch1543: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1443
  1496. Patch1544: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1444
  1497. Patch1545: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1445
  1498. Patch1546: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1446
  1499. Patch1547: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1447
  1500. Patch1548: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1448
  1501. Patch1549: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1449
  1502. Patch1550: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1450
  1503. Patch1551: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1451
  1504. Patch1552: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1452
  1505. Patch1553: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1453
  1506. Patch1554: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1454
  1507. Patch1555: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1455
  1508. Patch1556: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1456
  1509. Patch1557: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1457
  1510. Patch1558: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1458
  1511. Patch1559: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1459
  1512. Patch1560: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1460
  1513. Patch1561: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1461
  1514. Patch1562: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1462
  1515. Patch1563: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1463
  1516. Patch1564: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1464
  1517. Patch1565: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1465
  1518. Patch1566: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1466
  1519. Patch1567: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1467
  1520. Patch1568: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1468
  1521. Patch1569: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1469
  1522. Patch1570: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1470
  1523. Patch1571: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1471
  1524. Patch1572: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1472
  1525. Patch1573: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1473
  1526. Patch1574: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1474
  1527. Patch1575: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1475
  1528. Patch1576: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1476
  1529. Patch1577: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1477
  1530. Patch1578: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1478
  1531. Patch1579: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1479
  1532. Patch1580: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1480
  1533. Patch1581: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1481
  1534. Patch1582: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1482
  1535. Patch1583: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1483
  1536. Patch1584: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1484
  1537. Patch1585: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1485
  1538. Patch1586: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1486
  1539. Patch1587: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1487
  1540. Patch1588: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1488
  1541. Patch1589: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1489
  1542. Patch1590: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1490
  1543. Patch1591: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1491
  1544. Patch1592: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1492
  1545. Patch1593: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1493
  1546. Patch1594: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1494
  1547. Patch1595: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1495
  1548. Patch1596: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1496
  1549. Patch1597: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1497
  1550. Patch1598: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1498
  1551. Patch1599: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1499
  1552. Patch1600: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1500
  1553. Patch1601: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1501
  1554. Patch1602: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1502
  1555. Patch1603: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1503
  1556. Patch1604: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1504
  1557. Patch1605: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1505
  1558. Patch1606: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1506
  1559. Patch1607: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1507
  1560. Patch1608: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1508
  1561. Patch1609: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1509
  1562. Patch1610: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1510
  1563. Patch1611: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1511
  1564. Patch1612: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1512
  1565. Patch1613: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1513
  1566. Patch1614: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1514
  1567. Patch1615: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1515
  1568. Patch1616: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1516
  1569. Patch1617: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1517
  1570. Patch1618: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1518
  1571. Patch1619: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1519
  1572. Patch1620: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1520
  1573. Patch1621: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1521
  1574. Patch1622: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1522
  1575. Patch1623: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1523
  1576. Patch1624: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1524
  1577. Patch1625: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1525
  1578. Patch1626: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1526
  1579. Patch1627: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1527
  1580. Patch1628: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1528
  1581. Patch1629: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1529
  1582. Patch1630: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1530
  1583. Patch1631: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1531
  1584. Patch1632: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1532
  1585. Patch1633: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1533
  1586. Patch1634: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1534
  1587. Patch1635: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1535
  1588. Patch1636: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1536
  1589. Patch1637: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1537
  1590. Patch1638: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1538
  1591. Patch1639: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1539
  1592. Patch1640: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1540
  1593. Patch1641: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1541
  1594. Patch1642: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1542
  1595. Patch1643: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1543
  1596. Patch1644: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1544
  1597. Patch1645: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1545
  1598. Patch1646: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1546
  1599. Patch1647: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1547
  1600. Patch1648: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1548
  1601. Patch1649: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1549
  1602. Patch1650: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1550
  1603. Patch1651: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1551
  1604. Patch1652: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1552
  1605. Patch1653: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1553
  1606. Patch1654: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1554
  1607. Patch1655: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1555
  1608. Patch1656: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1556
  1609. Patch1657: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1557
  1610. Patch1658: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1558
  1611. Patch1659: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1559
  1612. Patch1660: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1560
  1613. Patch1661: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1561
  1614. Patch1662: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1562
  1615. Patch1663: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1563
  1616. Patch1664: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1564
  1617. Patch1665: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1565
  1618. Patch1666: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1566
  1619. Patch1667: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1567
  1620. Patch1668: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1568
  1621. Patch1669: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1569
  1622. Patch1670: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1570
  1623. Patch1671: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1571
  1624. Patch1672: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1572
  1625. Patch1673: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1573
  1626. Patch1674: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1574
  1627. Patch1675: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1575
  1628. Patch1676: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1576
  1629. Patch1677: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1577
  1630. Patch1678: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1578
  1631. Patch1679: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1579
  1632. Patch1680: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1580
  1633. Patch1681: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1581
  1634. Patch1682: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1582
  1635. Patch1683: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1583
  1636. Patch1684: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1584
  1637. Patch1685: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1585
  1638. Patch1686: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1586
  1639. Patch1687: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1587
  1640. Patch1688: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1588
  1641. Patch1689: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1589
  1642. Patch1690: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1590
  1643. Patch1691: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1591
  1644. Patch1692: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1592
  1645. Patch1693: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1593
  1646. Patch1694: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1594
  1647. Patch1695: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1595
  1648. Patch1696: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1596
  1649. Patch1697: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1597
  1650. Patch1698: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1598
  1651. Patch1699: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1599
  1652. Patch1700: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1600
  1653. Patch1701: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1601
  1654. Patch1702: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1602
  1655. Patch1703: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1603
  1656. Patch1704: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1604
  1657. Patch1705: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1605
  1658. Patch1706: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1606
  1659. Patch1707: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1607
  1660. Patch1708: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1608
  1661. Patch1709: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1609
  1662. Patch1710: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1610
  1663. Patch1711: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1611
  1664. Patch1712: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1612
  1665. Patch1713: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1613
  1666. Patch1714: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1614
  1667. Patch1715: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1615
  1668. Patch1716: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1616
  1669. Patch1717: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1617
  1670. Patch1718: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1618
  1671. Patch1719: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1619
  1672. Patch1720: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1620
  1673. Patch1721: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1621
  1674. Patch1722: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1622
  1675. Patch1723: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1623
  1676. Patch1724: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1624
  1677. Patch1725: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1625
  1678. Patch1726: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1626
  1679. Patch1727: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1627
  1680. Patch1728: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1628
  1681. Patch1729: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1629
  1682. Patch1730: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1630
  1683. Patch1731: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1631
  1684. Patch1732: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1632
  1685. Patch1733: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1633
  1686. Patch1734: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1634
  1687. Patch1735: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1635
  1688. Patch1736: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1636
  1689. Patch1737: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1637
  1690. Patch1738: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1638
  1691. Patch1739: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1639
  1692. Patch1740: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1640
  1693. Patch1741: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1641
  1694. Patch1742: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1642
  1695. Patch1743: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1643
  1696. Patch1744: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1644
  1697. Patch1745: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1645
  1698. Patch1746: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1646
  1699. Patch1747: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1647
  1700. Patch1748: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1648
  1701. Patch1749: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1649
  1702. Patch1750: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1650
  1703. Patch1751: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1651
  1704. Patch1752: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1652
  1705. Patch1753: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1653
  1706. Patch1754: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1654
  1707. Patch1755: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1655
  1708. Patch1756: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1656
  1709. Patch1757: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1657
  1710. Patch1758: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1658
  1711. Patch1759: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1659
  1712. Patch1760: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1660
  1713. Patch1761: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1661
  1714. Patch1762: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1662
  1715. Patch1763: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1663
  1716. Patch1764: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1664
  1717. Patch1765: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1665
  1718. Patch1766: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1666
  1719. Patch1767: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1667
  1720. Patch1768: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1668
  1721. Patch1769: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1669
  1722. Patch1770: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1670
  1723. Patch1771: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1671
  1724. Patch1772: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1672
  1725. Patch1773: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1673
  1726. Patch1774: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1674
  1727. Patch1775: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1675
  1728. Patch1776: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1676
  1729. Patch1777: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1677
  1730. Patch1778: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1678
  1731. Patch1779: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1679
  1732. Patch1780: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1680
  1733. Patch1781: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1681
  1734. Patch1782: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1682
  1735. Patch1783: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1683
  1736. Patch1784: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1684
  1737. Patch1785: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1685
  1738. Patch1786: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1686
  1739. Patch1787: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1687
  1740. Patch1788: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1688
  1741. Patch1789: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1689
  1742. Patch1790: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1690
  1743. Patch1791: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1691
  1744. Patch1792: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1692
  1745. Patch1793: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1693
  1746. Patch1794: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1694
  1747. Patch1795: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1695
  1748. Patch1796: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1696
  1749. Patch1797: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1697
  1750. Patch1798: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1698
  1751. Patch1799: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1699
  1752. Patch1800: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1700
  1753. Patch1801: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1701
  1754. Patch1802: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1702
  1755. Patch1803: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1703
  1756. Patch1804: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1704
  1757. Patch1805: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1705
  1758. Patch1806: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1706
  1759. Patch1807: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1707
  1760. Patch1808: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1708
  1761. Patch1809: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1709
  1762. Patch1810: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1710
  1763. Patch1811: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1711
  1764. Patch1812: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1712
  1765. Patch1813: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1713
  1766. Patch1814: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1714
  1767. Patch1815: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1715
  1768. Patch1816: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1716
  1769. Patch1817: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1717
  1770. Patch1818: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1718
  1771. Patch1819: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1719
  1772. Patch1820: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1720
  1773. Patch1821: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1721
  1774. Patch1822: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1722
  1775. Patch1823: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1723
  1776. Patch1824: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1724
  1777. Patch1825: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1725
  1778. Patch1826: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1726
  1779. Patch1827: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1727
  1780. Patch1828: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1728
  1781. Patch1829: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1729
  1782. Patch1830: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1730
  1783. Patch1831: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1731
  1784. Patch1832: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1732
  1785. Patch1833: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1733
  1786. Patch1834: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1734
  1787. Patch1835: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1735
  1788. Patch1836: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1736
  1789. Patch1837: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1737
  1790. Patch1838: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1738
  1791. Patch1839: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1739
  1792. Patch1840: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1740
  1793. Patch1841: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1741
  1794. Patch1842: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1742
  1795. Patch1843: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1743
  1796. Patch1844: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1744
  1797. Patch1845: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1745
  1798. Patch1846: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1746
  1799. Patch1847: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1747
  1800. Patch1848: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1748
  1801. Patch1849: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1749
  1802. Patch1850: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1750
  1803. Patch1851: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1751
  1804. Patch1852: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1752
  1805. Patch1853: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1753
  1806. Patch1854: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1754
  1807. Patch1855: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1755
  1808. Patch1856: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1756
  1809. Patch1857: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1757
  1810. Patch1858: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1758
  1811. Patch1859: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1759
  1812. Patch1860: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1760
  1813. Patch1861: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1761
  1814. Patch1862: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1762
  1815. Patch1863: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1763
  1816. Patch1864: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1764
  1817. Patch1865: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1765
  1818. Patch1866: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1766
  1819. Patch1867: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1767
  1820. Patch1868: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1768
  1821. Patch1869: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1769
  1822. Patch1870: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1770
  1823. Patch1871: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1771
  1824. Patch1872: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1772
  1825. Patch1873: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1773
  1826. Patch1874: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1774
  1827. Patch1875: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1775
  1828. Patch1876: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1776
  1829. Patch1877: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1777
  1830. Patch1878: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1778
  1831. Patch1879: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1779
  1832. Patch1880: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1780
  1833. Patch1881: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1781
  1834. Patch1882: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1782
  1835. Patch1883: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1783
  1836. Patch1884: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1784
  1837. Patch1885: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1785
  1838. Patch1886: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1786
  1839. Patch1887: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1787
  1840. Patch1888: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1788
  1841. Patch1889: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1789
  1842. Patch1890: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1790
  1843. Patch1891: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1791
  1844. Patch1892: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1792
  1845. Patch1893: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1793
  1846. Patch1894: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1794
  1847. Patch1895: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1795
  1848. Patch1896: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1796
  1849. Patch1897: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1797
  1850. Patch1898: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1798
  1851. Patch1899: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1799
  1852. Patch1900: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1800
  1853. Patch1901: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1801
  1854. Patch1902: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1802
  1855. Patch1903: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1803
  1856. Patch1904: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1804
  1857. Patch1905: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1805
  1858. Patch1906: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1806
  1859. Patch1907: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1807
  1860. Patch1908: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1808
  1861. Patch1909: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1809
  1862. Patch1910: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1810
  1863. Patch1911: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1811
  1864. Patch1912: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1812
  1865. Patch1913: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1813
  1866. Patch1914: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1814
  1867. Patch1915: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1815
  1868. Patch1916: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1816
  1869. Patch1917: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1817
  1870. Patch1918: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1818
  1871. Patch1919: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1819
  1872. Patch1920: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1820
  1873. Patch1921: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1821
  1874. Patch1922: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1822
  1875. Patch1923: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1823
  1876. Patch1924: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1824
  1877. Patch1925: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1825
  1878. Patch1926: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1826
  1879. Patch1927: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1827
  1880. Patch1928: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1828
  1881. Patch1929: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1829
  1882. Patch1930: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1830
  1883. Patch1931: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1831
  1884. Patch1932: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1832
  1885. Patch1933: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1833
  1886. Patch1934: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1834
  1887. Patch1935: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1835
  1888. Patch1936: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1836
  1889. Patch1937: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1837
  1890. Patch1938: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1838
  1891. Patch1939: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1839
  1892. Patch1940: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1840
  1893. Patch1941: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1841
  1894. Patch1942: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1842
  1895. Patch1943: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1843
  1896. Patch1944: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1844
  1897. Patch1945: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1845
  1898. Patch1946: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1846
  1899. Patch1947: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1847
  1900. Patch1948: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1848
  1901. Patch1949: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1849
  1902. Patch1950: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1850
  1903. Patch1951: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1851
  1904. Patch1952: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1852
  1905. Patch1953: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1853
  1906. Patch1954: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1854
  1907. Patch1955: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1855
  1908. Patch1956: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1856
  1909. Patch1957: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1857
  1910. Patch1958: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1858
  1911. Patch1959: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1859
  1912. Patch1960: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1860
  1913. Patch1961: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1861
  1914. Patch1962: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1862
  1915. Patch1963: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1863
  1916. Patch1964: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1864
  1917. Patch1965: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1865
  1918. Patch1966: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1866
  1919. Patch1967: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1867
  1920. Patch1968: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1868
  1921. Patch1969: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1869
  1922. Patch1970: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1870
  1923. Patch1971: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1871
  1924. Patch1972: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1872
  1925. Patch1973: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1873
  1926. Patch1974: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1874
  1927. Patch1975: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1875
  1928. Patch1976: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1876
  1929. Patch1977: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1877
  1930. Patch1978: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1878
  1931. Patch1979: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1879
  1932. Patch1980: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1880
  1933. Patch1981: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1881
  1934. Patch1982: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1882
  1935. Patch1983: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1883
  1936. Patch1984: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1884
  1937. Patch1985: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1885
  1938. Patch1986: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1886
  1939. Patch1987: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1887
  1940. Patch1988: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1888
  1941. Patch1989: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1889
  1942. Patch1990: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1890
  1943. Patch1991: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1891
  1944. Patch1992: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1892
  1945. Patch1993: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1893
  1946. Patch1994: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1894
  1947. Patch1995: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1895
  1948. Patch1996: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1896
  1949. Patch1997: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1897
  1950. Patch1998: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1898
  1951. Patch1999: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1899
  1952. Patch2000: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1900
  1953. Patch2001: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1901
  1954. Patch2002: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1902
  1955. Patch2003: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1903
  1956. Patch2004: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1904
  1957. Patch2005: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1905
  1958. Patch2006: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1906
  1959. Patch2007: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1907
  1960. Patch2008: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1908
  1961. Patch2009: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1909
  1962. Patch2010: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1910
  1963. Patch2011: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1911
  1964. Patch2012: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1912
  1965. Patch2013: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1913
  1966. Patch2014: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1914
  1967. Patch2015: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1915
  1968. Patch2016: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1916
  1969. Patch2017: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1917
  1970. Patch2018: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1918
  1971. Patch2019: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1919
  1972. Patch2020: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1920
  1973. Patch2021: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1921
  1974. Patch2022: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1922
  1975. Patch2023: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1923
  1976. Patch2024: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1924
  1977. Patch2025: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1925
  1978. Patch2026: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1926
  1979. Patch2027: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1927
  1980. Patch2028: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1928
  1981. Patch2029: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1929
  1982. Patch2030: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1930
  1983. Patch2031: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1931
  1984. Patch2032: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1932
  1985. Patch2033: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1933
  1986. Patch2034: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1934
  1987. Patch2035: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1935
  1988. Patch2036: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1936
  1989. Patch2037: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1937
  1990. Patch2038: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1938
  1991. Patch2039: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1939
  1992. Patch2040: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1940
  1993. Patch2041: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1941
  1994. Patch2042: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1942
  1995. Patch2043: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1943
  1996. Patch2044: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1944
  1997. Patch2045: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1945
  1998. Patch2046: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1946
  1999. Patch2047: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1947
  2000. Patch2048: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1948
  2001. Patch2049: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1949
  2002. Patch2050: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1950
  2003. Patch2051: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1951
  2004. Patch2052: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1952
  2005. Patch2053: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1953
  2006. Patch2054: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1954
  2007. Patch2055: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1955
  2008. Patch2056: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1956
  2009. Patch2057: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1957
  2010. Patch2058: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1958
  2011. Patch2059: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1959
  2012. Patch2060: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1960
  2013. Patch2061: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1961
  2014. Patch2062: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1962
  2015. Patch2063: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1963
  2016. Patch2064: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1964
  2017. Patch2065: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1965
  2018. Patch2066: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1966
  2019. Patch2067: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1967
  2020. Patch2068: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1968
  2021. Patch2069: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1969
  2022. Patch2070: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1970
  2023. Patch2071: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1971
  2024. Patch2072: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1972
  2025. Patch2073: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1973
  2026. Patch2074: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1974
  2027. Patch2075: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1975
  2028. Patch2076: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1976
  2029. Patch2077: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1977
  2030. Patch2078: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1978
  2031. Patch2079: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1979
  2032. Patch2080: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1980
  2033. Patch2081: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1981
  2034. Patch2082: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1982
  2035. Patch2083: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1983
  2036. Patch2084: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1984
  2037. Patch2085: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1985
  2038. Patch2086: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1986
  2039. Patch2087: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1987
  2040. # build information
  2041. BuildPreReq: OpenPKG, openpkg >= 20160101, ncurses
  2042. PreReq: OpenPKG, openpkg >= 20160101, ncurses
  2043. %if "%{with_perl}" == "yes"
  2044. BuildPreReq: perl
  2045. PreReq: perl
  2046. %endif
  2047. %if "%{with_python}" == "yes"
  2048. BuildPreReq: python
  2049. PreReq: python
  2050. %endif
  2051. %if "%{with_tcl}" == "yes"
  2052. BuildPreReq: tcl
  2053. PreReq: tcl
  2054. %endif
  2055. %if "%{with_ruby}" == "yes"
  2056. BuildPreReq: ruby
  2057. PreReq: ruby
  2058. %endif
  2059. %if "%{with_shell}" == "yes"
  2060. BuildPreReq: autoconf
  2061. %endif
  2062. %description
  2063. Vim (Vi Improved) is a text editor that is upwards compatible
  2064. with the classical Unix Vi. It can be used to edit any ASCII
  2065. text. It is especially useful for editing programs. Vim offers
  2066. a lot of enhancements not available in the traditional Vi. For
  2067. example, Vim has multi level undo, multi windows and buffers, syntax
  2068. highlighting, command line editing, filename completion, on-line
  2069. help, and visual selection.
  2070. %track
  2071. prog vim = {
  2072. version = %{V_vl}
  2073. url = ftp://ftp.vim.org/pub/vim/unix/
  2074. regex = vim-(\d+.\d+)\.tar\.(gz|bz2)
  2075. }
  2076. prog vim:patchlevel = {
  2077. version = %{V_vl}.%{V_pl}
  2078. url = ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/
  2079. regex = (%{V_vl}\.\d+)
  2080. }
  2081. %prep
  2082. # unpack base distribution parts
  2083. %setup -q -c
  2084. %patch -p0
  2085. %if "%{with_shell}" == "yes"
  2086. %patch -p0 -d vim%{V_vs} -P 1
  2087. %endif
  2088. # apply bundle patchsets
  2089. # for patchset in 001-100; do
  2090. # %{l_gzip} -d -c $RPM_SOURCE_DIR/%{V_vl}.$patchset.gz |\
  2091. # %{l_patch} -p0 -E -t -s >/dev/null 2>&1 || true
  2092. # done
  2093. # apply remaining single patches
  2094. i=1
  2095. while [ $i -le %{V_pl} ]; do
  2096. cat $RPM_SOURCE_DIR/%{V_vl}.`echo $i | awk '{ printf("%03d", $0); }'` |\
  2097. %{l_patch} -p0 -E -t -s >/dev/null 2>&1 || true
  2098. i=`expr $i + 1`
  2099. done
  2100. # adjust introduction text for OpenPKG branding
  2101. %{l_shtool} subst \
  2102. -e 's;Modified by;Packaged by;' \
  2103. vim%{V_vs}/src/version.c
  2104. # adjust paths to global configuration files
  2105. %{l_shtool} subst \
  2106. -e 's;^/\* \(#define SYS_VIMRC_FILE\).*$;\1 "%{l_prefix}/etc/vim/vimrc";' \
  2107. -e 's;^/\* \(#define SYS_GVIMRC_FILE\).*$;\1 "%{l_prefix}/etc/vim/gvimrc";' \
  2108. vim%{V_vs}/src/feature.h
  2109. %if "%{with_python}" == "yes"
  2110. # fix Python includes
  2111. %{l_shtool} subst \
  2112. -e 's;PYTHON_CFLAGS=.*$;PYTHON_CFLAGS="`python-config --includes`";' \
  2113. vim%{V_vs}/src/auto/configure
  2114. %endif
  2115. %build
  2116. # configure package
  2117. cd vim%{V_vs}/src
  2118. %if "%{with_shell}" == "yes"
  2119. %{l_make} %{l_mflags} autoconf
  2120. %endif
  2121. CC="%{l_cc}" \
  2122. CFLAGS="%{l_cflags -O}" \
  2123. CPPFLAGS="%{l_cppflags}" \
  2124. LDFLAGS="%{l_ldflags}" \
  2125. GREP="grep" \
  2126. ./configure \
  2127. --prefix=%{l_prefix} \
  2128. --mandir=%{l_prefix}/man \
  2129. --with-local-dir=%{l_prefix} \
  2130. --with-global-runtime=%{l_prefix}/lib/vim \
  2131. --with-modified-by='%{l_openpkg_release}' \
  2132. --with-tlib=ncurses \
  2133. --without-x \
  2134. --disable-gui \
  2135. %if "%{with_features}" == "huge"
  2136. --with-features=huge \
  2137. %else
  2138. %if "%{with_features}" == "big"
  2139. --with-features=big \
  2140. %else
  2141. %if "%{with_features}" == "small"
  2142. --with-features=small \
  2143. %else
  2144. --with-features=normal \
  2145. %endif
  2146. %endif
  2147. %endif
  2148. %if "%{with_multibyte}" == "yes"
  2149. --enable-multibyte \
  2150. %endif
  2151. %if "%{with_perl}" == "yes"
  2152. --enable-perlinterp \
  2153. %else
  2154. --disable-perlinterp \
  2155. %endif
  2156. %if "%{with_python}" == "yes"
  2157. --enable-pythoninterp \
  2158. --with-python-config-dir=%{l_prefix}/lib/python/config \
  2159. %else
  2160. --disable-pythoninterp \
  2161. %endif
  2162. %if "%{with_tcl}" == "yes"
  2163. --enable-tclinterp \
  2164. %else
  2165. --disable-tclinterp \
  2166. %endif
  2167. %if "%{with_ruby}" == "yes"
  2168. --enable-rubyinterp \
  2169. %else
  2170. --disable-rubyinterp \
  2171. %endif
  2172. --disable-nls
  2173. %{l_shtool} subst \
  2174. -e 's;^\(VIMRTDIR[^=]*=\).*;\1;' \
  2175. Makefile
  2176. # build package
  2177. %{l_make} %{l_mflags -O}
  2178. %install
  2179. # perform package installation procedure
  2180. ( cd vim%{V_vs}/src
  2181. %{l_make} %{l_mflags} install \
  2182. prefix=$RPM_BUILD_ROOT%{l_prefix} \
  2183. MANDIR=$RPM_BUILD_ROOT%{l_prefix}/man
  2184. ) || exit $?
  2185. # strip down installation hierarchy
  2186. strip $RPM_BUILD_ROOT%{l_prefix}/bin/vim >/dev/null 2>&1 || true
  2187. rm -f $RPM_BUILD_ROOT%{l_prefix}/bin/xxd
  2188. rm -f $RPM_BUILD_ROOT%{l_prefix}/man/man1/xxd.1
  2189. rm -rf $RPM_BUILD_ROOT%{l_prefix}/share/vim/tools
  2190. rm -rf $RPM_BUILD_ROOT%{l_prefix}/share/vim/macros
  2191. # add links for program runtime variants
  2192. for link in vi ex rview rvim view vimdiff; do
  2193. rm -f $RPM_BUILD_ROOT%{l_prefix}/bin/$link
  2194. ln $RPM_BUILD_ROOT%{l_prefix}/bin/vim \
  2195. $RPM_BUILD_ROOT%{l_prefix}/bin/$link
  2196. rm -f $RPM_BUILD_ROOT%{l_prefix}/man/man1/$link.1
  2197. ln $RPM_BUILD_ROOT%{l_prefix}/man/man1/vim.1 \
  2198. $RPM_BUILD_ROOT%{l_prefix}/man/man1/$link.1
  2199. done
  2200. # create installation area for addon packages
  2201. %{l_shtool} mkdir -f -p -m 755 \
  2202. $RPM_BUILD_ROOT%{l_prefix}/lib/vim
  2203. # install run-command script
  2204. %{l_shtool} mkdir -f -p -m 755 \
  2205. $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d
  2206. %{l_shtool} install -c -m 755 %{l_value -s -a} \
  2207. %{SOURCE rc.vim} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
  2208. # install default configuration
  2209. %{l_shtool} mkdir -f -p -m 755 \
  2210. $RPM_BUILD_ROOT%{l_prefix}/etc/vim
  2211. %{l_shtool} install -c -m 755 %{l_value -s -a} \
  2212. %{SOURCE vimrc} $RPM_BUILD_ROOT%{l_prefix}/etc/vim/
  2213. # determine installation files
  2214. %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
  2215. %{l_files_std} \
  2216. '%config %{l_prefix}/etc/vim/vimrc'
  2217. %files -f files
  2218. %clean
  2219. %preun
  2220. if [ $1 -eq 0 ]; then
  2221. # remove a (usually empty) "helptags" file of addon packages
  2222. rm -f $RPM_INSTALL_PREFIX/lib/vim/doc/tags >/dev/null 2>&1 || true
  2223. fi