From 05a822199ed6a2a2f7cc95dbe1137b8b775727af Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Thu, 12 Dec 2019 21:23:10 +0100 Subject: [PATCH] upgrading package: vim 8.1.2424 -> 8.2.0 --- vim/vim.patch | 647 +------------ vim/vim.spec | 2430 +------------------------------------------------ 2 files changed, 6 insertions(+), 3071 deletions(-) diff --git a/vim/vim.patch b/vim/vim.patch index 83e3edc1de..0879507281 100644 --- a/vim/vim.patch +++ b/vim/vim.patch @@ -1,9 +1,6 @@ -The following patch adjust the RPM .spec syntax highlighting -a little bit to better highlight OpenPKG RPM .spec files. - -Index: vim81/runtime/syntax/spec.vim ---- vim81/runtime/syntax/spec.vim.orig 2016-08-31 21:53:08.000000000 +0200 -+++ vim81/runtime/syntax/spec.vim 2016-09-12 19:55:57.279496833 +0200 +Index: vim82/runtime/syntax/spec.vim +--- vim82/runtime/syntax/spec.vim.orig 2019-09-27 18:45:49.000000000 +0200 ++++ vim82/runtime/syntax/spec.vim 2019-12-12 21:17:06.919502000 +0100 @@ -80,7 +80,7 @@ "One line macros - valid in all ScriptAreas @@ -49,641 +46,3 @@ Index: vim81/runtime/syntax/spec.vim syn sync match specIfSync groupthere specIf "%endIf" syn sync match shForSync grouphere shFor "\" syn sync match shForSync groupthere shFor "\" - ------------------------------------------------------------------------------ - -Activate additional language files. - -Index: vim81/runtime/filetype.vim ---- vim81/runtime/filetype.vim.orig 2013-08-03 17:50:05.000000000 +0200 -+++ vim81/runtime/filetype.vim 2013-12-27 17:08:28.997948852 +0100 -@@ -2374,7 +2374,7 @@ - au BufNewFile,BufRead *.csproj,*.csproj.user setf xml - - " Qt Linguist translation source and Qt User Interface Files are XML --au BufNewFile,BufRead *.ts,*.ui setf xml -+au BufNewFile,BufRead *.ui setf xml - - " TPM's are RDF-based descriptions of TeX packages (Nikolai Weibull) - au BufNewFile,BufRead *.tpm setf xml -@@ -2447,6 +2447,15 @@ - " Z80 assembler asz80 - au BufNewFile,BufRead *.z8a setf z8a - -+" Scala -+au BufNewFile,BufRead *.scala setf scala -+ -+" Markdown -+au BufNewFile,BufRead *.mkd setf mkd -+ -+" TypeScript -+au BufNewFile,BufRead *.ts setf typescript -+ - augroup END - - ------------------------------------------------------------------------------ - -Markdown Language Support -http://plasticboy.com/markdown-vim-mode/ -http://github.com/plasticboy/vim-markdown/ - -Index: vim81/runtime/syntax/mkd.vim ---- vim81/runtime/syntax/mkd.vim.orig 2010-08-10 12:57:36.000000000 +0200 -+++ vim81/runtime/syntax/mkd.vim 2010-08-10 12:57:41.000000000 +0200 -@@ -0,0 +1,104 @@ -+" Vim syntax file -+" Language: Markdown -+" Maintainer: Ben Williams -+" URL: http://plasticboy.com/markdown-vim-mode/ -+" Version: 9 -+" Last Change: 2009 May 18 -+" Remark: Uses HTML syntax file -+" Remark: I don't do anything with angle brackets (<>) because that would too easily -+" easily conflict with HTML syntax -+" TODO: Handle stuff contained within stuff (e.g. headings within blockquotes) -+ -+ -+" Read the HTML syntax to start with -+if version < 600 -+ so :p:h/html.vim -+else -+ runtime! syntax/html.vim -+ unlet b:current_syntax -+endif -+ -+if version < 600 -+ syntax clear -+elseif exists("b:current_syntax") -+ finish -+endif -+ -+" don't use standard HiLink, it will not work with included syntax files -+if version < 508 -+ command! -nargs=+ HtmlHiLink hi link -+else -+ command! -nargs=+ HtmlHiLink hi def link -+endif -+ -+syn spell toplevel -+syn case ignore -+syn sync linebreaks=1 -+ -+"additions to HTML groups -+" syn region htmlBold start=/\\\@) -+syn region mkdLinkDef matchgroup=mkdDelimiter start="^ \{,3}\zs\[" end="]:" oneline nextgroup=mkdLinkDefTarget skipwhite -+syn region mkdLinkDefTarget start="<\?\zs\S" excludenl end="\ze[>[:space:]\n]" contained nextgroup=mkdLinkTitle,mkdLinkDef skipwhite skipnl oneline -+syn region mkdLinkTitle matchgroup=mkdDelimiter start=+"+ end=+"+ contained -+syn region mkdLinkTitle matchgroup=mkdDelimiter start=+'+ end=+'+ contained -+syn region mkdLinkTitle matchgroup=mkdDelimiter start=+(+ end=+)+ contained -+ -+"define Markdown groups -+syn match mkdLineContinue ".$" contained -+syn match mkdRule /^\s*\*\s\{0,1}\*\s\{0,1}\*$/ -+syn match mkdRule /^\s*-\s\{0,1}-\s\{0,1}-$/ -+syn match mkdRule /^\s*_\s\{0,1}_\s\{0,1}_$/ -+syn match mkdRule /^\s*-\{3,}$/ -+syn match mkdRule /^\s*\*\{3,5}$/ -+syn match mkdListItem "^\s*[-*+]\s\+" -+syn match mkdListItem "^\s*\d\+\.\s\+" -+syn match mkdCode /^\s*\n\(\(\s\{4,}[^ ]\|\t\+[^\t]\).*\n\)\+/ -+syn match mkdLineBreak / \+$/ -+syn region mkdCode start=/\\\@/ end=/$/ contains=mkdLineBreak,mkdLineContinue,@Spell -+syn region mkdCode start="]*>" end="" -+syn region mkdCode start="]*>" end="" -+ -+"HTML headings -+syn region htmlH1 start="^\s*#" end="\($\|#\+\)" contains=@Spell -+syn region htmlH2 start="^\s*##" end="\($\|#\+\)" contains=@Spell -+syn region htmlH3 start="^\s*###" end="\($\|#\+\)" contains=@Spell -+syn region htmlH4 start="^\s*####" end="\($\|#\+\)" contains=@Spell -+syn region htmlH5 start="^\s*#####" end="\($\|#\+\)" contains=@Spell -+syn region htmlH6 start="^\s*######" end="\($\|#\+\)" contains=@Spell -+syn match htmlH1 /^.\+\n=\+$/ contains=@Spell -+syn match htmlH2 /^.\+\n-\+$/ contains=@Spell -+ -+"highlighting for Markdown groups -+HtmlHiLink mkdString String -+HtmlHiLink mkdCode String -+HtmlHiLink mkdBlockquote Comment -+HtmlHiLink mkdLineContinue Comment -+HtmlHiLink mkdListItem Identifier -+HtmlHiLink mkdRule Identifier -+HtmlHiLink mkdLineBreak Todo -+HtmlHiLink mkdLink htmlLink -+HtmlHiLink mkdURL htmlString -+HtmlHiLink mkdID Identifier -+HtmlHiLink mkdLinkDef mkdID -+HtmlHiLink mkdLinkDefTarget mkdURL -+HtmlHiLink mkdLinkTitle htmlString -+ -+HtmlHiLink mkdDelimiter Delimiter -+ -+let b:current_syntax = "mkd" -+ -+delcommand HtmlHiLink -+" vim: ts=8 - ------------------------------------------------------------------------------ - -SCSS Language Support -http://scss-lang.com/ -http://github.com/cakebaker/scss-syntax.vim/blob/master/syntax/scss.vim - -Index: vim81/runtime/syntax/scss.vim ---- vim81/runtime/syntax/scss.vim.orig 2010-07-26 01:38:18.000000000 +0200 -+++ vim81/runtime/syntax/scss.vim 2010-08-29 15:44:54.000000000 +0200 -@@ -1,20 +1,87 @@ - " Vim syntax file --" Language: SCSS --" Maintainer: Tim Pope --" Filenames: *.scss --" Last Change: 2010 Jul 26 -+" Language: SCSS (Sassy CSS) -+" Author: Daniel Hofstetter (daniel.hofstetter@42dh.com) -+" Inspired by the syntax files for sass and css. Thanks to the authors of -+" those files! - - if exists("b:current_syntax") - finish - endif - --runtime! syntax/sass.vim -+runtime! syntax/css.vim - --syn match scssComment "//.*" contains=sassTodo,@Spell --syn region scssComment start="/\*" end="\*/" contains=sassTodo,@Spell -+syn case ignore - --hi def link scssComment sassComment -+syn region scssDefinition transparent matchgroup=cssBraces start='{' end='}' contains=css.*Attr,css.*Prop,cssComment,cssValue.*,cssColor,cssUrl,cssImportant,cssError,cssStringQ,cssStringQQ,cssFunction,cssUnicodeEscape,scssDefinition,scssComment,scssIdChar,scssClassChar,scssAmpersand,scssVariable,scssInclude,scssExtend,scssDebug,scssWarn,@scssControl,scssInterpolation,scssNestedSelector - --let b:current_syntax = "scss" -+syn region scssInterpolation start="#{" end="}" contains=scssVariable -+ -+syn match scssVariable "$[[:alnum:]_-]\+" nextgroup=scssVariableAssignment -+syn match scssVariableAssignment ":" contained nextgroup=scssVariableValue -+syn match scssVariableValue ".*;"me=e-1 contained contains=scssVariable,scssOperator,scssDefault "me=e-1 means that the last char of the pattern is not highlighted -+syn match scssMixin "^@mixin" nextgroup=scssMixinName -+syn match scssMixinName " [[:alnum:]_-]\+" contained nextgroup=scssDefinition -+syn match scssInclude "@include" nextgroup=scssMixinName -+syn match scssExtend "@extend .*[;}]"me=e-1 contains=cssTagName,scssIdChar,scssClassChar -+ -+syn match scssColor "#[0-9A-Fa-f]\{3\}\>" contained -+syn match scssColor "#[0-9A-Fa-f]\{6\}\>" contained -+ -+syn match scssIdChar "#[[:alnum:]_-]\@=" nextgroup=scssId contains=scssColor -+syn match scssId "[[:alnum:]_-]\+" contained -+syn match scssClassChar "\.[[:alnum:]_-]\@=" nextgroup=scssClass -+syn match scssClass "[[:alnum:]_-]\+" contained -+syn match scssAmpersand "&" nextgroup=cssPseudoClass -+ -+syn match scssOperator "+" contained -+syn match scssOperator "-" contained -+syn match scssOperator "/" contained -+syn match scssOperator "*" contained -+ -+syn match scssNestedSelector "[^/]* {"me=e-1 contained contains=cssTagName,scssIdChar,scssClassChar,scssAmpersand,scssVariable,scssMixin,@scssControl,scssInterpolation,scssNestedProperty -+syn match scssNestedProperty "[[:alnum:]]\+:"me=e-1 contained -+ -+syn match scssDebug "@debug" -+syn match scssWarn "@warn" -+syn match scssDefault "!default" contained -+ -+syn match scssIf "@if" -+syn match scssElse "@else" -+syn match scssElseIf "@else if" -+syn match scssWhile "@while" -+syn match scssFor "@for" nextgroup=scssVariable -+syn match scssFrom " from " -+syn match scssTo " to " -+syn match scssThrough " through " -+syn cluster scssControl contains=scssIf,scssElse,scssElseIf,scssWhile,scssFor,scssFrom,scssTo,scssThrough -+ -+syn match scssComment "//.*$" contains=@Spell -+ -+hi def link scssVariable Identifier -+hi def link scssVariableValue Constant -+hi def link scssMixin PreProc -+hi def link scssMixinName Function -+hi def link scssInclude PreProc -+hi def link scssExtend PreProc -+hi def link scssComment Comment -+hi def link scssColor Constant -+hi def link scssIdChar Special -+hi def link scssClassChar Special -+hi def link scssId Identifier -+hi def link scssClass Identifier -+hi def link scssAmpersand Character -+hi def link scssNestedProperty Type -+hi def link scssDebug Debug -+hi def link scssWarn Debug -+hi def link scssDefault Special -+hi def link scssIf Conditional -+hi def link scssElse Conditional -+hi def link scssElseIf Conditional -+hi def link scssWhile Repeat -+hi def link scssFor Repeat -+hi def link scssFrom Repeat -+hi def link scssTo Repeat -+hi def link scssThrough Repeat -+hi def link scssInterpolation Delimiter - --" vim:set sw=2: -+let b:current_syntax = "scss" - ------------------------------------------------------------------------------ - -TypeScript Language Support -http://blogs.msdn.com/b/interoperability/archive/2012/10/01/sublime-text-vi-emacs-typescript-enabled.aspx - -Index: vim81/runtime/syntax/typescript.vim ---- vim81/runtime/syntax/typescript.vim.orig 2012-12-01 12:27:01.000000000 +0100 -+++ vim81/runtime/syntax/typescript.vim 2012-12-01 12:26:44.000000000 +0100 -@@ -0,0 +1,321 @@ -+" Vim syntax file -+" Language: TypeScript -+" Author: MicroSoft Open Technologies Inc. -+" Version: 0.1 -+" Credits: Zhao Yi, Claudio Fleiner, Scott Shattuck, Jose Elera Campana -+ -+if !exists("main_syntax") -+ if version < 600 -+ syntax clear -+ elseif exists("b:current_syntax") -+ finish -+ endif -+ let main_syntax = "typescript" -+endif -+ -+" Drop fold if it set but vim doesn't support it. -+if version < 600 && exists("typeScript_fold") -+ unlet typeScript_fold -+endif -+ -+"" dollar sign is permitted anywhere in an identifier -+setlocal iskeyword+=$ -+ -+syntax sync fromstart -+ -+"" syntax coloring for Node.js shebang line -+syn match shebang "^#!.*/bin/env\s\+node\>" -+hi link shebang Comment -+ -+"" typeScript comments"{{{ -+syn keyword typeScriptCommentTodo TODO FIXME XXX TBD contained -+syn match typeScriptLineComment "\/\/.*" contains=@Spell,typeScriptCommentTodo,typeScriptRef -+syn match typeScriptRef /\/\/\/$/ contains=typeScriptRefD,typeScriptRefS -+syn region typeScriptRefD start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ -+syn region typeScriptRefS start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ -+ -+syn match typeScriptCommentSkip "^[ \t]*\*\($\|[ \t]\+\)" -+syn region typeScriptComment start="/\*" end="\*/" contains=@Spell,typeScriptCommentTodo -+"}}} -+"" JSDoc support start"{{{ -+if !exists("typeScript_ignore_typeScriptdoc") -+ syntax case ignore -+ -+" syntax coloring for JSDoc comments (HTML) -+"unlet b:current_syntax -+ -+ syntax region typeScriptDocComment matchgroup=typeScriptComment start="/\*\*\s*$" end="\*/" contains=typeScriptDocTags,typeScriptCommentTodo,typeScriptCvsTag,@typeScriptHtml,@Spell fold -+ syntax match typeScriptDocTags contained "@\(param\|argument\|requires\|exception\|throws\|type\|class\|extends\|see\|link\|member\|module\|method\|title\|namespace\|optional\|default\|base\|file\)\>" nextgroup=typeScriptDocParam,typeScriptDocSeeTag skipwhite -+ syntax match typeScriptDocTags contained "@\(beta\|deprecated\|description\|fileoverview\|author\|license\|version\|returns\=\|constructor\|private\|protected\|final\|ignore\|addon\|exec\)\>" -+ syntax match typeScriptDocParam contained "\%(#\|\w\|\.\|:\|\/\)\+" -+ syntax region typeScriptDocSeeTag contained matchgroup=typeScriptDocSeeTag start="{" end="}" contains=typeScriptDocTags -+ -+ syntax case match -+endif "" JSDoc end -+"}}} -+syntax case match -+ -+"" Syntax in the typeScript code"{{{ -+syn match typeScriptSpecial "\\\d\d\d\|\\." -+syn region typeScriptStringD start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=typeScriptSpecial,@htmlPreproc -+syn region typeScriptStringS start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=typeScriptSpecial,@htmlPreproc -+ -+syn match typeScriptSpecialCharacter "'\\.'" -+syn match typeScriptNumber "-\=\<\d\+L\=\>\|0[xX][0-9a-fA-F]\+\>" -+syn region typeScriptRegexpString start=+/[^/*]+me=e-1 skip=+\\\\\|\\/+ end=+/[gi]\{0,2\}\s*$+ end=+/[gi]\{0,2\}\s*[;.,)\]}]+me=e-1 contains=@htmlPreproc oneline -+" syntax match typeScriptSpecial "\\\d\d\d\|\\x\x\{2\}\|\\u\x\{4\}\|\\." -+" syntax region typeScriptStringD start=+"+ skip=+\\\\\|\\$"+ end=+"+ contains=typeScriptSpecial,@htmlPreproc -+" syntax region typeScriptStringS start=+'+ skip=+\\\\\|\\$'+ end=+'+ contains=typeScriptSpecial,@htmlPreproc -+" syntax region typeScriptRegexpString start=+/\(\*\|/\)\@!+ skip=+\\\\\|\\/+ end=+/[gim]\{,3}+ contains=typeScriptSpecial,@htmlPreproc oneline -+" syntax match typeScriptNumber /\<-\=\d\+L\=\>\|\<0[xX]\x\+\>/ -+syntax match typeScriptFloat /\<-\=\%(\d\+\.\d\+\|\d\+\.\|\.\d\+\)\%([eE][+-]\=\d\+\)\=\>/ -+" syntax match typeScriptLabel /\(?\s*\)\@/ -+ syntax match typeScriptDomElemFuncs contained /\%(insertBefore\|replaceChild\|removeChild\|appendChild\|hasChildNodes\|cloneNode\|normalize\|isSupported\|hasAttributes\|getAttribute\|setAttribute\|removeAttribute\|getAttributeNode\|setAttributeNode\|removeAttributeNode\|getElementsByTagName\|getAttributeNS\|setAttributeNS\|removeAttributeNS\|getAttributeNodeNS\|setAttributeNodeNS\|getElementsByTagNameNS\|hasAttribute\|hasAttributeNS\)\>/ nextgroup=typeScriptParen skipwhite -+"}}} -+" HTML things"{{{ -+ syntax match typeScriptHtmlElemAttrs contained /\%(className\|clientHeight\|clientLeft\|clientTop\|clientWidth\|dir\|id\|innerHTML\|lang\|length\|offsetHeight\|offsetLeft\|offsetParent\|offsetTop\|offsetWidth\|scrollHeight\|scrollLeft\|scrollTop\|scrollWidth\|style\|tabIndex\|title\)\>/ -+ syntax match typeScriptHtmlElemFuncs contained /\%(blur\|click\|focus\|scrollIntoView\|addEventListener\|dispatchEvent\|removeEventListener\|item\)\>/ nextgroup=typeScriptParen skipwhite -+"}}} -+" CSS Styles in typeScript"{{{ -+ syntax keyword typeScriptCssStyles contained color font fontFamily fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontWeight letterSpacing lineBreak lineHeight quotes rubyAlign rubyOverhang rubyPosition -+ syntax keyword typeScriptCssStyles contained textAlign textAlignLast textAutospace textDecoration textIndent textJustify textJustifyTrim textKashidaSpace textOverflowW6 textShadow textTransform textUnderlinePosition -+ syntax keyword typeScriptCssStyles contained unicodeBidi whiteSpace wordBreak wordSpacing wordWrap writingMode -+ syntax keyword typeScriptCssStyles contained bottom height left position right top width zIndex -+ syntax keyword typeScriptCssStyles contained border borderBottom borderLeft borderRight borderTop borderBottomColor borderLeftColor borderTopColor borderBottomStyle borderLeftStyle borderRightStyle borderTopStyle borderBottomWidth borderLeftWidth borderRightWidth borderTopWidth borderColor borderStyle borderWidth borderCollapse borderSpacing captionSide emptyCells tableLayout -+ syntax keyword typeScriptCssStyles contained margin marginBottom marginLeft marginRight marginTop outline outlineColor outlineStyle outlineWidth padding paddingBottom paddingLeft paddingRight paddingTop -+ syntax keyword typeScriptCssStyles contained listStyle listStyleImage listStylePosition listStyleType -+ syntax keyword typeScriptCssStyles contained background backgroundAttachment backgroundColor backgroundImage gackgroundPosition backgroundPositionX backgroundPositionY backgroundRepeat -+ syntax keyword typeScriptCssStyles contained clear clip clipBottom clipLeft clipRight clipTop content counterIncrement counterReset cssFloat cursor direction display filter layoutGrid layoutGridChar layoutGridLine layoutGridMode layoutGridType -+ syntax keyword typeScriptCssStyles contained marks maxHeight maxWidth minHeight minWidth opacity MozOpacity overflow overflowX overflowY verticalAlign visibility zoom cssText -+ syntax keyword typeScriptCssStyles contained scrollbar3dLightColor scrollbarArrowColor scrollbarBaseColor scrollbarDarkShadowColor scrollbarFaceColor scrollbarHighlightColor scrollbarShadowColor scrollbarTrackColor -+"}}} -+" Highlight ways"{{{ -+ syntax match typeScriptDotNotation "\." nextgroup=typeScriptPrototype,typeScriptDomElemAttrs,typeScriptDomElemFuncs,typeScriptHtmlElemAttrs,typeScriptHtmlElemFuncs -+ syntax match typeScriptDotNotation "\.style\." nextgroup=typeScriptCssStyles -+"}}} -+endif "DOM/HTML/CSS -+ -+"" end DOM/HTML/CSS specified things""}}} -+ -+ -+"" Code blocks -+syntax cluster typeScriptAll contains=typeScriptComment,typeScriptLineComment,typeScriptDocComment,typeScriptStringD,typeScriptStringS,typeScriptRegexpString,typeScriptNumber,typeScriptFloat,typeScriptLabel,typeScriptSource,typeScriptType,typeScriptOperator,typeScriptBoolean,typeScriptNull,typeScriptFuncKeyword,typeScriptConditional,typeScriptGlobal,typeScriptRepeat,typeScriptBranch,typeScriptStatement,typeScriptGlobalObjects,typeScriptMessage,typeScriptIdentifier,typeScriptExceptions,typeScriptReserved,typeScriptDeprecated,typeScriptDomErrNo,typeScriptDomNodeConsts,typeScriptHtmlEvents,typeScriptDotNotation,typeScriptBrowserObjects,typeScriptDOMObjects,typeScriptAjaxObjects,typeScriptPropietaryObjects,typeScriptDOMMethods,typeScriptHtmlElemProperties,typeScriptDOMProperties,typeScriptEventListenerKeywords,typeScriptEventListenerMethods,typeScriptAjaxProperties,typeScriptAjaxMethods,typeScriptFuncArg -+ -+if main_syntax == "typeScript" -+ syntax sync clear -+ syntax sync ccomment typeScriptComment minlines=200 -+" syntax sync match typeScriptHighlight grouphere typeScriptBlock /{/ -+endif -+ -+syntax keyword typeScriptFuncKeyword function contained -+syntax region typeScriptFuncDef start="function" end="\([^)]*\)" contains=typeScriptFuncKeyword,typeScriptFuncArg keepend -+syntax match typeScriptFuncArg "\(([^()]*)\)" contains=typeScriptParens,typeScriptFuncComma contained -+syntax match typeScriptFuncComma /,/ contained -+" syntax region typeScriptFuncBlock contained matchgroup=typeScriptFuncBlock start="{" end="}" contains=@typeScriptAll,typeScriptParensErrA,typeScriptParensErrB,typeScriptParen,typeScriptBracket,typeScriptBlock fold -+ -+syn match typeScriptBraces "[{}\[\]]" -+syn match typeScriptParens "[()]" -+syn match typeScriptOpSymbols "=\{1,3}\|!==\|!=\|<\|>\|>=\|<=\|++\|+=\|--\|-=" -+syn match typeScriptEndColons "[;,]" -+syn match typeScriptLogicSymbols "\(&&\)\|\(||\)" -+ -+" typeScriptFold Function {{{ -+ -+function! TypeScriptFold() -+setl foldmethod=syntax -+setl foldlevelstart=1 -+syn region foldBraces start=/{/ end=/}/ transparent fold keepend extend -+ -+setl foldtext=FoldText() -+endfunction -+ -+au FileType typeScript call TypeScriptFold() -+ -+" }}} -+ -+" Define the default highlighting. -+" For version 5.7 and earlier: only when not done already -+" For version 5.8 and later: only when an item doesn't have highlighting yet -+if version >= 508 || !exists("did_typeScript_syn_inits") -+ if version < 508 -+ let did_typeScript_syn_inits = 1 -+ command -nargs=+ HiLink hi link -+ else -+ command -nargs=+ HiLink hi def link -+ endif -+ -+ "Typescript highlighting -+ HiLink typeScriptParameters Operator -+ HiLink typescriptSuperBlock Operator -+ -+ HiLink typeScriptEndColons Exception -+ HiLink typeScriptOpSymbols Operator -+ HiLink typeScriptLogicSymbols Boolean -+ HiLink typeScriptBraces Function -+ HiLink typeScriptParens Operator -+ HiLink typeScriptComment Comment -+ HiLink typeScriptLineComment Comment -+ HiLink typeScriptRef Include -+ HiLink typeScriptRefS String -+ HiLink typeScriptRefD String -+ HiLink typeScriptDocComment Comment -+ HiLink typeScriptCommentTodo Todo -+ HiLink typeScriptCvsTag Function -+ HiLink typeScriptDocTags Special -+ HiLink typeScriptDocSeeTag Function -+ HiLink typeScriptDocParam Function -+ HiLink typeScriptStringS String -+ HiLink typeScriptStringD String -+ HiLink typeScriptRegexpString String -+ HiLink typeScriptGlobal Constant -+ HiLink typeScriptCharacter Character -+ HiLink typeScriptPrototype Type -+ HiLink typeScriptConditional Conditional -+ HiLink typeScriptBranch Conditional -+ HiLink typeScriptIdentifier Identifier -+ HiLink typeScriptRepeat Repeat -+ HiLink typeScriptStatement Statement -+ HiLink typeScriptFuncKeyword Function -+ HiLink typeScriptMessage Keyword -+ HiLink typeScriptDeprecated Exception -+ HiLink typeScriptError Error -+ HiLink typeScriptParensError Error -+ HiLink typeScriptParensErrA Error -+ HiLink typeScriptParensErrB Error -+ HiLink typeScriptParensErrC Error -+ HiLink typeScriptReserved Keyword -+ HiLink typeScriptOperator Operator -+ HiLink typeScriptType Type -+ HiLink typeScriptNull Type -+ HiLink typeScriptNumber Number -+ HiLink typeScriptFloat Number -+ HiLink typeScriptBoolean Boolean -+ HiLink typeScriptLabel Label -+ HiLink typeScriptSpecial Special -+ HiLink typeScriptSource Special -+ HiLink typeScriptGlobalObjects Special -+ HiLink typeScriptExceptions Special -+ -+ HiLink typeScriptDomErrNo Constant -+ HiLink typeScriptDomNodeConsts Constant -+ HiLink typeScriptDomElemAttrs Label -+ HiLink typeScriptDomElemFuncs PreProc -+ -+ HiLink typeScriptHtmlElemAttrs Label -+ HiLink typeScriptHtmlElemFuncs PreProc -+ -+ HiLink typeScriptCssStyles Label -+" Ajax Highlighting -+HiLink typeScriptBrowserObjects Constant -+ -+HiLink typeScriptDOMObjects Constant -+HiLink typeScriptDOMMethods Exception -+HiLink typeScriptDOMProperties Type -+ -+HiLink typeScriptAjaxObjects htmlH1 -+HiLink typeScriptAjaxMethods Exception -+HiLink typeScriptAjaxProperties Type -+ -+HiLink typeScriptFuncDef Title -+ HiLink typeScriptFuncArg Special -+ HiLink typeScriptFuncComma Operator -+ -+HiLink typeScriptHtmlEvents Special -+HiLink typeScriptHtmlElemProperties Type -+ -+HiLink typeScriptEventListenerKeywords Keyword -+ -+HiLink typeScriptNumber Number -+HiLink typeScriptPropietaryObjects Constant -+ -+ delcommand HiLink -+endif -+ -+" Define the htmltypeScript for HTML syntax html.vim -+"syntax clear htmltypeScript -+"syntax clear typeScriptExpression -+syntax cluster htmltypeScript contains=@typeScriptAll,typeScriptBracket,typeScriptParen,typeScriptBlock,typeScriptParenError -+syntax cluster typeScriptExpression contains=@typeScriptAll,typeScriptBracket,typeScriptParen,typeScriptBlock,typeScriptParenError,@htmlPreproc -+ -+let b:current_syntax = "typeScript" -+if main_syntax == 'typeScript' -+ unlet main_syntax -+endif -+ -+" vim: ts=4 -Index: vim81/runtime/compiler/typescript.vim ---- vim81/runtime/compiler/typescript.vim.orig 2012-12-01 12:36:49.000000000 +0100 -+++ vim81/runtime/compiler/typescript.vim 2012-12-01 12:36:45.000000000 +0100 -@@ -0,0 +1,10 @@ -+ -+if exists("current_compiler") -+ finish -+endif -+ -+let current_compiler = "typescript" -+ -+CompilerSet makeprg=tsc\ $*\ % -+CompilerSet errorformat=\ %#%f\ %#(%l\\\,%c):\ %m -+ -Index: vim81/runtime/ftplugin/typescript.vim ---- vim81/runtime/ftplugin/typescript.vim.orig 2012-12-01 12:44:59.000000000 +0100 -+++ vim81/runtime/ftplugin/typescript.vim 2012-12-01 12:44:54.000000000 +0100 -@@ -0,0 +1,10 @@ -+ -+compiler typescript -+ -+setlocal autoindent -+setlocal cindent -+setlocal smartindent -+setlocal indentexpr& -+ -+setlocal commentstring=//\ %s -+ - ------------------------------------------------------------------------------ - -JavaScript ECMAScript 2018 Language Support - -Index: vim81/runtime/syntax/javascript.vim ---- vim81/runtime/syntax/javascript.vim.orig 2016-08-31 21:51:58.000000000 +0200 -+++ vim81/runtime/syntax/javascript.vim 2018-03-25 18:04:56.551202000 +0200 -@@ -55,6 +55,7 @@ - syn keyword javaScriptMember document event location - syn keyword javaScriptDeprecated escape unescape - syn keyword javaScriptReserved abstract boolean byte char class const debugger double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized throws transient volatile -+syn keyword javaScriptAsync async await - - if exists("javaScript_fold") - syn match javaScriptFunction "\" -@@ -113,6 +114,7 @@ - hi def link javaScriptReserved Keyword - hi def link javaScriptDebug Debug - hi def link javaScriptConstant Label -+hi def link javaScriptAsync Keyword - - - let b:current_syntax = "javascript" diff --git a/vim/vim.spec b/vim/vim.spec index 7d85a92a71..3adc503d60 100644 --- a/vim/vim.spec +++ b/vim/vim.spec @@ -22,9 +22,9 @@ ## # package versions -%define V_vl 8.1 -%define V_vs 81 -%define V_pl 2424 +%define V_vl 8.2 +%define V_vs 82 +%define V_pl 0 # package information Name: vim @@ -53,2430 +53,6 @@ Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{V_vl}.tar.bz2 Source2: rc.vim Source3: vimrc Patch0: vim.patch -Patch101: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0001 -Patch102: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0002 -Patch103: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0003 -Patch104: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0004 -Patch105: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0005 -Patch106: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0006 -Patch107: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0007 -Patch108: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0008 -Patch109: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0009 -Patch110: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0010 -Patch111: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0011 -Patch112: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0012 -Patch113: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0013 -Patch114: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0014 -Patch115: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0015 -Patch116: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0016 -Patch117: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0017 -Patch118: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0018 -Patch119: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0019 -Patch120: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0020 -Patch121: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0021 -Patch122: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0022 -Patch123: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0023 -Patch124: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0024 -Patch125: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0025 -Patch126: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0026 -Patch127: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0027 -Patch128: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0028 -Patch129: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0029 -Patch130: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0030 -Patch131: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0031 -Patch132: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0032 -Patch133: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0033 -Patch134: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0034 -Patch135: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0035 -Patch136: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0036 -Patch137: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0037 -Patch138: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0038 -Patch139: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0039 -Patch140: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0040 -Patch141: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0041 -Patch142: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0042 -Patch143: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0043 -Patch144: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0044 -Patch145: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0045 -Patch146: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0046 -Patch147: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0047 -Patch148: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0048 -Patch149: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0049 -Patch150: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0050 -Patch151: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0051 -Patch152: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0052 -Patch153: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0053 -Patch154: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0054 -Patch155: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0055 -Patch156: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0056 -Patch157: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0057 -Patch158: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0058 -Patch159: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0059 -Patch160: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0060 -Patch161: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0061 -Patch162: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0062 -Patch163: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0063 -Patch164: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0064 -Patch165: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0065 -Patch166: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0066 -Patch167: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0067 -Patch168: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0068 -Patch169: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0069 -Patch170: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0070 -Patch171: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0071 -Patch172: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0072 -Patch173: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0073 -Patch174: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0074 -Patch175: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0075 -Patch176: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0076 -Patch177: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0077 -Patch178: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0078 -Patch179: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0079 -Patch180: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0080 -Patch181: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0081 -Patch182: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0082 -Patch183: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0083 -Patch184: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0084 -Patch185: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0085 -Patch186: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0086 -Patch187: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0087 -Patch188: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0088 -Patch189: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0089 -Patch190: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0090 -Patch191: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0091 -Patch192: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0092 -Patch193: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0093 -Patch194: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0094 -Patch195: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0095 -Patch196: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0096 -Patch197: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0097 -Patch198: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0098 -Patch199: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0099 -Patch200: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0100 -Patch201: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0101 -Patch202: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0102 -Patch203: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0103 -Patch204: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0104 -Patch205: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0105 -Patch206: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0106 -Patch207: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0107 -Patch208: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0108 -Patch209: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0109 -Patch210: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0110 -Patch211: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0111 -Patch212: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0112 -Patch213: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0113 -Patch214: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0114 -Patch215: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0115 -Patch216: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0116 -Patch217: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0117 -Patch218: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0118 -Patch219: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0119 -Patch220: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0120 -Patch221: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0121 -Patch222: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0122 -Patch223: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0123 -Patch224: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0124 -Patch225: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0125 -Patch226: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0126 -Patch227: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0127 -Patch228: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0128 -Patch229: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0129 -Patch230: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0130 -Patch231: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0131 -Patch232: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0132 -Patch233: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0133 -Patch234: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0134 -Patch235: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0135 -Patch236: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0136 -Patch237: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0137 -Patch238: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0138 -Patch239: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0139 -Patch240: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0140 -Patch241: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0141 -Patch242: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0142 -Patch243: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0143 -Patch244: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0144 -Patch245: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0145 -Patch246: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0146 -Patch247: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0147 -Patch248: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0148 -Patch249: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0149 -Patch250: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0150 -Patch251: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0151 -Patch252: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0152 -Patch253: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0153 -Patch254: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0154 -Patch255: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0155 -Patch256: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0156 -Patch257: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0157 -Patch258: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0158 -Patch259: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0159 -Patch260: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0160 -Patch261: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0161 -Patch262: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0162 -Patch263: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0163 -Patch264: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0164 -Patch265: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0165 -Patch266: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0166 -Patch267: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0167 -Patch268: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0168 -Patch269: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0169 -Patch270: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0170 -Patch271: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0171 -Patch272: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0172 -Patch273: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0173 -Patch274: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0174 -Patch275: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0175 -Patch276: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0176 -Patch277: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0177 -Patch278: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0178 -Patch279: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0179 -Patch280: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0180 -Patch281: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0181 -Patch282: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0182 -Patch283: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0183 -Patch284: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0184 -Patch285: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0185 -Patch286: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0186 -Patch287: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0187 -Patch288: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0188 -Patch289: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0189 -Patch290: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0190 -Patch291: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0191 -Patch292: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0192 -Patch293: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0193 -Patch294: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0194 -Patch295: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0195 -Patch296: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0196 -Patch297: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0197 -Patch298: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0198 -Patch299: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0199 -Patch300: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0200 -Patch301: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0201 -Patch302: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0202 -Patch303: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0203 -Patch304: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0204 -Patch305: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0205 -Patch306: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0206 -Patch307: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0207 -Patch308: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0208 -Patch309: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0209 -Patch310: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0210 -Patch311: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0211 -Patch312: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0212 -Patch313: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0213 -Patch314: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0214 -Patch315: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0215 -Patch316: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0216 -Patch317: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0217 -Patch318: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0218 -Patch319: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0219 -Patch320: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0220 -Patch321: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0221 -Patch322: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0222 -Patch323: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0223 -Patch324: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0224 -Patch325: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0225 -Patch326: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0226 -Patch327: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0227 -Patch328: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0228 -Patch329: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0229 -Patch330: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0230 -Patch331: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0231 -Patch332: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0232 -Patch333: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0233 -Patch334: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0234 -Patch335: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0235 -Patch336: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0236 -Patch337: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0237 -Patch338: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0238 -Patch339: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0239 -Patch340: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0240 -Patch341: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0241 -Patch342: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0242 -Patch343: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0243 -Patch344: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0244 -Patch345: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0245 -Patch346: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0246 -Patch347: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0247 -Patch348: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0248 -Patch349: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0249 -Patch350: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0250 -Patch351: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0251 -Patch352: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0252 -Patch353: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0253 -Patch354: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0254 -Patch355: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0255 -Patch356: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0256 -Patch357: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0257 -Patch358: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0258 -Patch359: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0259 -Patch360: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0260 -Patch361: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0261 -Patch362: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0262 -Patch363: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0263 -Patch364: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0264 -Patch365: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0265 -Patch366: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0266 -Patch367: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0267 -Patch368: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0268 -Patch369: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0269 -Patch370: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0270 -Patch371: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0271 -Patch372: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0272 -Patch373: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0273 -Patch374: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0274 -Patch375: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0275 -Patch376: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0276 -Patch377: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0277 -Patch378: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0278 -Patch379: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0279 -Patch380: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0280 -Patch381: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0281 -Patch382: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0282 -Patch383: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0283 -Patch384: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0284 -Patch385: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0285 -Patch386: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0286 -Patch387: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0287 -Patch388: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0288 -Patch389: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0289 -Patch390: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0290 -Patch391: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0291 -Patch392: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0292 -Patch393: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0293 -Patch394: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0294 -Patch395: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0295 -Patch396: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0296 -Patch397: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0297 -Patch398: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0298 -Patch399: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0299 -Patch400: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0300 -Patch401: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0301 -Patch402: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0302 -Patch403: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0303 -Patch404: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0304 -Patch405: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0305 -Patch406: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0306 -Patch407: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0307 -Patch408: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0308 -Patch409: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0309 -Patch410: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0310 -Patch411: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0311 -Patch412: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0312 -Patch413: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0313 -Patch414: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0314 -Patch415: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0315 -Patch416: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0316 -Patch417: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0317 -Patch418: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0318 -Patch419: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0319 -Patch420: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0320 -Patch421: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0321 -Patch422: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0322 -Patch423: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0323 -Patch424: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0324 -Patch425: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0325 -Patch426: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0326 -Patch427: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0327 -Patch428: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0328 -Patch429: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0329 -Patch430: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0330 -Patch431: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0331 -Patch432: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0332 -Patch433: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0333 -Patch434: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0334 -Patch435: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0335 -Patch436: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0336 -Patch437: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0337 -Patch438: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0338 -Patch439: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0339 -Patch440: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0340 -Patch441: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0341 -Patch442: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0342 -Patch443: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0343 -Patch444: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0344 -Patch445: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0345 -Patch446: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0346 -Patch447: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0347 -Patch448: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0348 -Patch449: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0349 -Patch450: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0350 -Patch451: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0351 -Patch452: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0352 -Patch453: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0353 -Patch454: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0354 -Patch455: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0355 -Patch456: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0356 -Patch457: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0357 -Patch458: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0358 -Patch459: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0359 -Patch460: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0360 -Patch461: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0361 -Patch462: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0362 -Patch463: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0363 -Patch464: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0364 -Patch465: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0365 -Patch466: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0366 -Patch467: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0367 -Patch468: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0368 -Patch469: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0369 -Patch470: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0370 -Patch471: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0371 -Patch472: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0372 -Patch473: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0373 -Patch474: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0374 -Patch475: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0375 -Patch476: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0376 -Patch477: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0377 -Patch478: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0378 -Patch479: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0379 -Patch480: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0380 -Patch481: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0381 -Patch482: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0382 -Patch483: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0383 -Patch484: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0384 -Patch485: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0385 -Patch486: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0386 -Patch487: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0387 -Patch488: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0388 -Patch489: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0389 -Patch490: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0390 -Patch491: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0391 -Patch492: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0392 -Patch493: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0393 -Patch494: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0394 -Patch495: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0395 -Patch496: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0396 -Patch497: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0397 -Patch498: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0398 -Patch499: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0399 -Patch500: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0400 -Patch501: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0401 -Patch502: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0402 -Patch503: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0403 -Patch504: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0404 -Patch505: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0405 -Patch506: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0406 -Patch507: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0407 -Patch508: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0408 -Patch509: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0409 -Patch510: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0410 -Patch511: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0411 -Patch512: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0412 -Patch513: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0413 -Patch514: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0414 -Patch515: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0415 -Patch516: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0416 -Patch517: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0417 -Patch518: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0418 -Patch519: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0419 -Patch520: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0420 -Patch521: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0421 -Patch522: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0422 -Patch523: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0423 -Patch524: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0424 -Patch525: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0425 -Patch526: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0426 -Patch527: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0427 -Patch528: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0428 -Patch529: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0429 -Patch530: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0430 -Patch531: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0431 -Patch532: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0432 -Patch533: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0433 -Patch534: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0434 -Patch535: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0435 -Patch536: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0436 -Patch537: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0437 -Patch538: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0438 -Patch539: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0439 -Patch540: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0440 -Patch541: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0441 -Patch542: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0442 -Patch543: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0443 -Patch544: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0444 -Patch545: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0445 -Patch546: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0446 -Patch547: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0447 -Patch548: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0448 -Patch549: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0449 -Patch550: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0450 -Patch551: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0451 -Patch552: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0452 -Patch553: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0453 -Patch554: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0454 -Patch555: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0455 -Patch556: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0456 -Patch557: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0457 -Patch558: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0458 -Patch559: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0459 -Patch560: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0460 -Patch561: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0461 -Patch562: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0462 -Patch563: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0463 -Patch564: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0464 -Patch565: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0465 -Patch566: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0466 -Patch567: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0467 -Patch568: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0468 -Patch569: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0469 -Patch570: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0470 -Patch571: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0471 -Patch572: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0472 -Patch573: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0473 -Patch574: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0474 -Patch575: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0475 -Patch576: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0476 -Patch577: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0477 -Patch578: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0478 -Patch579: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0479 -Patch580: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0480 -Patch581: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0481 -Patch582: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0482 -Patch583: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0483 -Patch584: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0484 -Patch585: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0485 -Patch586: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0486 -Patch587: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0487 -Patch588: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0488 -Patch589: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0489 -Patch590: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0490 -Patch591: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0491 -Patch592: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0492 -Patch593: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0493 -Patch594: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0494 -Patch595: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0495 -Patch596: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0496 -Patch597: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0497 -Patch598: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0498 -Patch599: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0499 -Patch600: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0500 -Patch601: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0501 -Patch602: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0502 -Patch603: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0503 -Patch604: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0504 -Patch605: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0505 -Patch606: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0506 -Patch607: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0507 -Patch608: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0508 -Patch609: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0509 -Patch610: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0510 -Patch611: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0511 -Patch612: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0512 -Patch613: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0513 -Patch614: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0514 -Patch615: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0515 -Patch616: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0516 -Patch617: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0517 -Patch618: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0518 -Patch619: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0519 -Patch620: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0520 -Patch621: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0521 -Patch622: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0522 -Patch623: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0523 -Patch624: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0524 -Patch625: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0525 -Patch626: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0526 -Patch627: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0527 -Patch628: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0528 -Patch629: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0529 -Patch630: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0530 -Patch631: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0531 -Patch632: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0532 -Patch633: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0533 -Patch634: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0534 -Patch635: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0535 -Patch636: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0536 -Patch637: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0537 -Patch638: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0538 -Patch639: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0539 -Patch640: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0540 -Patch641: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0541 -Patch642: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0542 -Patch643: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0543 -Patch644: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0544 -Patch645: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0545 -Patch646: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0546 -Patch647: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0547 -Patch648: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0548 -Patch649: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0549 -Patch650: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0550 -Patch651: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0551 -Patch652: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0552 -Patch653: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0553 -Patch654: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0554 -Patch655: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0555 -Patch656: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0556 -Patch657: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0557 -Patch658: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0558 -Patch659: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0559 -Patch660: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0560 -Patch661: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0561 -Patch662: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0562 -Patch663: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0563 -Patch664: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0564 -Patch665: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0565 -Patch666: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0566 -Patch667: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0567 -Patch668: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0568 -Patch669: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0569 -Patch670: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0570 -Patch671: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0571 -Patch672: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0572 -Patch673: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0573 -Patch674: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0574 -Patch675: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0575 -Patch676: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0576 -Patch677: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0577 -Patch678: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0578 -Patch679: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0579 -Patch680: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0580 -Patch681: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0581 -Patch682: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0582 -Patch683: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0583 -Patch684: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0584 -Patch685: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0585 -Patch686: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0586 -Patch687: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0587 -Patch688: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0588 -Patch689: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0589 -Patch690: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0590 -Patch691: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0591 -Patch692: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0592 -Patch693: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0593 -Patch694: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0594 -Patch695: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0595 -Patch696: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0596 -Patch697: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0597 -Patch698: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0598 -Patch699: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0599 -Patch700: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0600 -Patch701: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0601 -Patch702: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0602 -Patch703: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0603 -Patch704: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0604 -Patch705: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0605 -Patch706: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0606 -Patch707: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0607 -Patch708: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0608 -Patch709: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0609 -Patch710: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0610 -Patch711: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0611 -Patch712: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0612 -Patch713: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0613 -Patch714: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0614 -Patch715: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0615 -Patch716: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0616 -Patch717: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0617 -Patch718: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0618 -Patch719: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0619 -Patch720: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0620 -Patch721: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0621 -Patch722: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0622 -Patch723: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0623 -Patch724: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0624 -Patch725: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0625 -Patch726: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0626 -Patch727: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0627 -Patch728: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0628 -Patch729: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0629 -Patch730: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0630 -Patch731: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0631 -Patch732: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0632 -Patch733: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0633 -Patch734: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0634 -Patch735: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0635 -Patch736: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0636 -Patch737: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0637 -Patch738: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0638 -Patch739: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0639 -Patch740: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0640 -Patch741: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0641 -Patch742: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0642 -Patch743: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0643 -Patch744: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0644 -Patch745: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0645 -Patch746: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0646 -Patch747: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0647 -Patch748: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0648 -Patch749: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0649 -Patch750: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0650 -Patch751: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0651 -Patch752: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0652 -Patch753: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0653 -Patch754: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0654 -Patch755: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0655 -Patch756: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0656 -Patch757: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0657 -Patch758: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0658 -Patch759: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0659 -Patch760: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0660 -Patch761: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0661 -Patch762: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0662 -Patch763: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0663 -Patch764: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0664 -Patch765: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0665 -Patch766: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0666 -Patch767: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0667 -Patch768: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0668 -Patch769: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0669 -Patch770: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0670 -Patch771: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0671 -Patch772: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0672 -Patch773: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0673 -Patch774: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0674 -Patch775: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0675 -Patch776: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0676 -Patch777: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0677 -Patch778: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0678 -Patch779: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0679 -Patch780: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0680 -Patch781: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0681 -Patch782: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0682 -Patch783: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0683 -Patch784: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0684 -Patch785: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0685 -Patch786: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0686 -Patch787: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0687 -Patch788: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0688 -Patch789: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0689 -Patch790: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0690 -Patch791: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0691 -Patch792: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0692 -Patch793: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0693 -Patch794: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0694 -Patch795: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0695 -Patch796: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0696 -Patch797: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0697 -Patch798: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0698 -Patch799: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0699 -Patch800: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0700 -Patch801: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0701 -Patch802: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0702 -Patch803: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0703 -Patch804: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0704 -Patch805: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0705 -Patch806: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0706 -Patch807: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0707 -Patch808: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0708 -Patch809: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0709 -Patch810: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0710 -Patch811: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0711 -Patch812: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0712 -Patch813: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0713 -Patch814: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0714 -Patch815: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0715 -Patch816: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0716 -Patch817: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0717 -Patch818: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0718 -Patch819: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0719 -Patch820: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0720 -Patch821: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0721 -Patch822: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0722 -Patch823: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0723 -Patch824: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0724 -Patch825: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0725 -Patch826: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0726 -Patch827: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0727 -Patch828: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0728 -Patch829: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0729 -Patch830: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0730 -Patch831: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0731 -Patch832: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0732 -Patch833: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0733 -Patch834: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0734 -Patch835: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0735 -Patch836: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0736 -Patch837: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0737 -Patch838: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0738 -Patch839: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0739 -Patch840: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0740 -Patch841: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0741 -Patch842: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0742 -Patch843: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0743 -Patch844: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0744 -Patch845: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0745 -Patch846: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0746 -Patch847: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0747 -Patch848: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0748 -Patch849: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0749 -Patch850: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0750 -Patch851: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0751 -Patch852: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0752 -Patch853: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0753 -Patch854: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0754 -Patch855: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0755 -Patch856: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0756 -Patch857: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0757 -Patch858: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0758 -Patch859: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0759 -Patch860: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0760 -Patch861: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0761 -Patch862: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0762 -Patch863: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0763 -Patch864: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0764 -Patch865: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0765 -Patch866: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0766 -Patch867: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0767 -Patch868: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0768 -Patch869: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0769 -Patch870: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0770 -Patch871: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0771 -Patch872: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0772 -Patch873: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0773 -Patch874: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0774 -Patch875: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0775 -Patch876: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0776 -Patch877: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0777 -Patch878: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0778 -Patch879: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0779 -Patch880: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0780 -Patch881: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0781 -Patch882: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0782 -Patch883: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0783 -Patch884: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0784 -Patch885: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0785 -Patch886: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0786 -Patch887: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0787 -Patch888: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0788 -Patch889: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0789 -Patch890: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0790 -Patch891: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0791 -Patch892: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0792 -Patch893: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0793 -Patch894: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0794 -Patch895: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0795 -Patch896: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0796 -Patch897: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0797 -Patch898: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0798 -Patch899: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0799 -Patch900: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0800 -Patch901: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0801 -Patch902: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0802 -Patch903: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0803 -Patch904: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0804 -Patch905: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0805 -Patch906: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0806 -Patch907: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0807 -Patch908: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0808 -Patch909: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0809 -Patch910: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0810 -Patch911: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0811 -Patch912: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0812 -Patch913: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0813 -Patch914: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0814 -Patch915: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0815 -Patch916: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0816 -Patch917: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0817 -Patch918: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0818 -Patch919: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0819 -Patch920: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0820 -Patch921: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0821 -Patch922: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0822 -Patch923: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0823 -Patch924: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0824 -Patch925: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0825 -Patch926: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0826 -Patch927: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0827 -Patch928: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0828 -Patch929: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0829 -Patch930: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0830 -Patch931: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0831 -Patch932: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0832 -Patch933: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0833 -Patch934: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0834 -Patch935: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0835 -Patch936: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0836 -Patch937: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0837 -Patch938: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0838 -Patch939: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0839 -Patch940: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0840 -Patch941: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0841 -Patch942: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0842 -Patch943: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0843 -Patch944: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0844 -Patch945: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0845 -Patch946: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0846 -Patch947: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0847 -Patch948: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0848 -Patch949: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0849 -Patch950: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0850 -Patch951: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0851 -Patch952: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0852 -Patch953: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0853 -Patch954: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0854 -Patch955: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0855 -Patch956: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0856 -Patch957: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0857 -Patch958: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0858 -Patch959: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0859 -Patch960: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0860 -Patch961: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0861 -Patch962: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0862 -Patch963: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0863 -Patch964: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0864 -Patch965: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0865 -Patch966: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0866 -Patch967: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0867 -Patch968: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0868 -Patch969: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0869 -Patch970: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0870 -Patch971: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0871 -Patch972: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0872 -Patch973: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0873 -Patch974: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0874 -Patch975: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0875 -Patch976: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0876 -Patch977: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0877 -Patch978: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0878 -Patch979: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0879 -Patch980: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0880 -Patch981: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0881 -Patch982: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0882 -Patch983: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0883 -Patch984: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0884 -Patch985: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0885 -Patch986: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0886 -Patch987: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0887 -Patch988: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0888 -Patch989: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0889 -Patch990: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0890 -Patch991: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0891 -Patch992: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0892 -Patch993: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0893 -Patch994: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0894 -Patch995: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0895 -Patch996: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0896 -Patch997: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0897 -Patch998: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0898 -Patch999: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0899 -Patch1000: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0900 -Patch1001: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0901 -Patch1002: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0902 -Patch1003: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0903 -Patch1004: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0904 -Patch1005: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0905 -Patch1006: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0906 -Patch1007: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0907 -Patch1008: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0908 -Patch1009: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0909 -Patch1010: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0910 -Patch1011: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0911 -Patch1012: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0912 -Patch1013: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0913 -Patch1014: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0914 -Patch1015: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0915 -Patch1016: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0916 -Patch1017: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0917 -Patch1018: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0918 -Patch1019: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0919 -Patch1020: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0920 -Patch1021: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0921 -Patch1022: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0922 -Patch1023: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0923 -Patch1024: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0924 -Patch1025: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0925 -Patch1026: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0926 -Patch1027: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0927 -Patch1028: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0928 -Patch1029: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0929 -Patch1030: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0930 -Patch1031: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0931 -Patch1032: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0932 -Patch1033: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0933 -Patch1034: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0934 -Patch1035: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0935 -Patch1036: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0936 -Patch1037: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0937 -Patch1038: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0938 -Patch1039: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0939 -Patch1040: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0940 -Patch1041: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0941 -Patch1042: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0942 -Patch1043: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0943 -Patch1044: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0944 -Patch1045: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0945 -Patch1046: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0946 -Patch1047: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0947 -Patch1048: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0948 -Patch1049: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0949 -Patch1050: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0950 -Patch1051: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0951 -Patch1052: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0952 -Patch1053: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0953 -Patch1054: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0954 -Patch1055: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0955 -Patch1056: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0956 -Patch1057: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0957 -Patch1058: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0958 -Patch1059: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0959 -Patch1060: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0960 -Patch1061: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0961 -Patch1062: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0962 -Patch1063: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0963 -Patch1064: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0964 -Patch1065: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0965 -Patch1066: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0966 -Patch1067: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0967 -Patch1068: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0968 -Patch1069: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0969 -Patch1070: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0970 -Patch1071: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0971 -Patch1072: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0972 -Patch1073: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0973 -Patch1074: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0974 -Patch1075: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0975 -Patch1076: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0976 -Patch1077: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0977 -Patch1078: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0978 -Patch1079: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0979 -Patch1080: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0980 -Patch1081: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0981 -Patch1082: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0982 -Patch1083: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0983 -Patch1084: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0984 -Patch1085: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0985 -Patch1086: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0986 -Patch1087: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0987 -Patch1088: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0988 -Patch1089: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0989 -Patch1090: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0990 -Patch1091: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0991 -Patch1092: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0992 -Patch1093: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0993 -Patch1094: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0994 -Patch1095: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0995 -Patch1096: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0996 -Patch1097: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0997 -Patch1098: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0998 -Patch1099: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.0999 -Patch1100: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1000 -Patch1101: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1001 -Patch1102: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1002 -Patch1103: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1003 -Patch1104: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1004 -Patch1105: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1005 -Patch1106: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1006 -Patch1107: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1007 -Patch1108: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1008 -Patch1109: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1009 -Patch1110: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1010 -Patch1111: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1011 -Patch1112: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1012 -Patch1113: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1013 -Patch1114: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1014 -Patch1115: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1015 -Patch1116: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1016 -Patch1117: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1017 -Patch1118: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1018 -Patch1119: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1019 -Patch1120: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1020 -Patch1121: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1021 -Patch1122: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1022 -Patch1123: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1023 -Patch1124: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1024 -Patch1125: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1025 -Patch1126: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1026 -Patch1127: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1027 -Patch1128: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1028 -Patch1129: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1029 -Patch1130: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1030 -Patch1131: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1031 -Patch1132: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1032 -Patch1133: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1033 -Patch1134: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1034 -Patch1135: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1035 -Patch1136: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1036 -Patch1137: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1037 -Patch1138: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1038 -Patch1139: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1039 -Patch1140: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1040 -Patch1141: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1041 -Patch1142: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1042 -Patch1143: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1043 -Patch1144: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1044 -Patch1145: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1045 -Patch1146: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1046 -Patch1147: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1047 -Patch1148: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1048 -Patch1149: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1049 -Patch1150: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1050 -Patch1151: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1051 -Patch1152: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1052 -Patch1153: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1053 -Patch1154: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1054 -Patch1155: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1055 -Patch1156: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1056 -Patch1157: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1057 -Patch1158: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1058 -Patch1159: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1059 -Patch1160: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1060 -Patch1161: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1061 -Patch1162: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1062 -Patch1163: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1063 -Patch1164: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1064 -Patch1165: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1065 -Patch1166: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1066 -Patch1167: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1067 -Patch1168: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1068 -Patch1169: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1069 -Patch1170: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1070 -Patch1171: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1071 -Patch1172: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1072 -Patch1173: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1073 -Patch1174: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1074 -Patch1175: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1075 -Patch1176: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1076 -Patch1177: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1077 -Patch1178: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1078 -Patch1179: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1079 -Patch1180: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1080 -Patch1181: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1081 -Patch1182: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1082 -Patch1183: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1083 -Patch1184: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1084 -Patch1185: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1085 -Patch1186: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1086 -Patch1187: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1087 -Patch1188: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1088 -Patch1189: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1089 -Patch1190: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1090 -Patch1191: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1091 -Patch1192: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1092 -Patch1193: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1093 -Patch1194: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1094 -Patch1195: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1095 -Patch1196: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1096 -Patch1197: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1097 -Patch1198: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1098 -Patch1199: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1099 -Patch1200: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1100 -Patch1201: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1101 -Patch1202: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1102 -Patch1203: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1103 -Patch1204: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1104 -Patch1205: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1105 -Patch1206: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1106 -Patch1207: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1107 -Patch1208: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1108 -Patch1209: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1109 -Patch1210: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1110 -Patch1211: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1111 -Patch1212: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1112 -Patch1213: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1113 -Patch1214: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1114 -Patch1215: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1115 -Patch1216: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1116 -Patch1217: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1117 -Patch1218: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1118 -Patch1219: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1119 -Patch1220: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1120 -Patch1221: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1121 -Patch1222: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1122 -Patch1223: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1123 -Patch1224: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1124 -Patch1225: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1125 -Patch1226: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1126 -Patch1227: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1127 -Patch1228: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1128 -Patch1229: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1129 -Patch1230: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1130 -Patch1231: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1131 -Patch1232: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1132 -Patch1233: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1133 -Patch1234: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1134 -Patch1235: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1135 -Patch1236: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1136 -Patch1237: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1137 -Patch1238: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1138 -Patch1239: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1139 -Patch1240: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1140 -Patch1241: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1141 -Patch1242: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1142 -Patch1243: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1143 -Patch1244: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1144 -Patch1245: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1145 -Patch1246: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1146 -Patch1247: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1147 -Patch1248: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1148 -Patch1249: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1149 -Patch1250: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1150 -Patch1251: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1151 -Patch1252: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1152 -Patch1253: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1153 -Patch1254: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1154 -Patch1255: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1155 -Patch1256: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1156 -Patch1257: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1157 -Patch1258: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1158 -Patch1259: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1159 -Patch1260: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1160 -Patch1261: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1161 -Patch1262: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1162 -Patch1263: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1163 -Patch1264: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1164 -Patch1265: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1165 -Patch1266: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1166 -Patch1267: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1167 -Patch1268: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1168 -Patch1269: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1169 -Patch1270: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1170 -Patch1271: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1171 -Patch1272: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1172 -Patch1273: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1173 -Patch1274: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1174 -Patch1275: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1175 -Patch1276: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1176 -Patch1277: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1177 -Patch1278: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1178 -Patch1279: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1179 -Patch1280: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1180 -Patch1281: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1181 -Patch1282: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1182 -Patch1283: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1183 -Patch1284: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1184 -Patch1285: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1185 -Patch1286: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1186 -Patch1287: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1187 -Patch1288: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1188 -Patch1289: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1189 -Patch1290: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1190 -Patch1291: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1191 -Patch1292: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1192 -Patch1293: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1193 -Patch1294: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1194 -Patch1295: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1195 -Patch1296: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1196 -Patch1297: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1197 -Patch1298: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1198 -Patch1299: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1199 -Patch1300: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1200 -Patch1301: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1201 -Patch1302: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1202 -Patch1303: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1203 -Patch1304: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1204 -Patch1305: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1205 -Patch1306: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1206 -Patch1307: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1207 -Patch1308: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1208 -Patch1309: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1209 -Patch1310: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1210 -Patch1311: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1211 -Patch1312: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1212 -Patch1313: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1213 -Patch1314: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1214 -Patch1315: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1215 -Patch1316: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1216 -Patch1317: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1217 -Patch1318: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1218 -Patch1319: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1219 -Patch1320: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1220 -Patch1321: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1221 -Patch1322: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1222 -Patch1323: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1223 -Patch1324: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1224 -Patch1325: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1225 -Patch1326: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1226 -Patch1327: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1227 -Patch1328: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1228 -Patch1329: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1229 -Patch1330: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1230 -Patch1331: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1231 -Patch1332: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1232 -Patch1333: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1233 -Patch1334: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1234 -Patch1335: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1235 -Patch1336: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1236 -Patch1337: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1237 -Patch1338: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1238 -Patch1339: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1239 -Patch1340: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1240 -Patch1341: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1241 -Patch1342: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1242 -Patch1343: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1243 -Patch1344: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1244 -Patch1345: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1245 -Patch1346: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1246 -Patch1347: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1247 -Patch1348: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1248 -Patch1349: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1249 -Patch1350: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1250 -Patch1351: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1251 -Patch1352: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1252 -Patch1353: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1253 -Patch1354: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1254 -Patch1355: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1255 -Patch1356: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1256 -Patch1357: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1257 -Patch1358: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1258 -Patch1359: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1259 -Patch1360: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1260 -Patch1361: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1261 -Patch1362: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1262 -Patch1363: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1263 -Patch1364: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1264 -Patch1365: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1265 -Patch1366: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1266 -Patch1367: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1267 -Patch1368: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1268 -Patch1369: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1269 -Patch1370: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1270 -Patch1371: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1271 -Patch1372: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1272 -Patch1373: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1273 -Patch1374: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1274 -Patch1375: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1275 -Patch1376: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1276 -Patch1377: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1277 -Patch1378: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1278 -Patch1379: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1279 -Patch1380: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1280 -Patch1381: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1281 -Patch1382: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1282 -Patch1383: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1283 -Patch1384: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1284 -Patch1385: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1285 -Patch1386: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1286 -Patch1387: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1287 -Patch1388: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1288 -Patch1389: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1289 -Patch1390: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1290 -Patch1391: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1291 -Patch1392: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1292 -Patch1393: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1293 -Patch1394: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1294 -Patch1395: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1295 -Patch1396: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1296 -Patch1397: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1297 -Patch1398: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1298 -Patch1399: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1299 -Patch1400: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1300 -Patch1401: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1301 -Patch1402: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1302 -Patch1403: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1303 -Patch1404: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1304 -Patch1405: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1305 -Patch1406: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1306 -Patch1407: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1307 -Patch1408: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1308 -Patch1409: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1309 -Patch1410: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1310 -Patch1411: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1311 -Patch1412: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1312 -Patch1413: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1313 -Patch1414: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1314 -Patch1415: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1315 -Patch1416: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1316 -Patch1417: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1317 -Patch1418: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1318 -Patch1419: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1319 -Patch1420: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1320 -Patch1421: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1321 -Patch1422: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1322 -Patch1423: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1323 -Patch1424: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1324 -Patch1425: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1325 -Patch1426: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1326 -Patch1427: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1327 -Patch1428: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1328 -Patch1429: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1329 -Patch1430: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1330 -Patch1431: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1331 -Patch1432: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1332 -Patch1433: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1333 -Patch1434: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1334 -Patch1435: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1335 -Patch1436: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1336 -Patch1437: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1337 -Patch1438: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1338 -Patch1439: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1339 -Patch1440: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1340 -Patch1441: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1341 -Patch1442: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1342 -Patch1443: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1343 -Patch1444: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1344 -Patch1445: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1345 -Patch1446: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1346 -Patch1447: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1347 -Patch1448: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1348 -Patch1449: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1349 -Patch1450: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1350 -Patch1451: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1351 -Patch1452: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1352 -Patch1453: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1353 -Patch1454: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1354 -Patch1455: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1355 -Patch1456: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1356 -Patch1457: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1357 -Patch1458: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1358 -Patch1459: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1359 -Patch1460: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1360 -Patch1461: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1361 -Patch1462: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1362 -Patch1463: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1363 -Patch1464: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1364 -Patch1465: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1365 -Patch1466: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1366 -Patch1467: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1367 -Patch1468: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1368 -Patch1469: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1369 -Patch1470: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1370 -Patch1471: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1371 -Patch1472: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1372 -Patch1473: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1373 -Patch1474: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1374 -Patch1475: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1375 -Patch1476: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1376 -Patch1477: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1377 -Patch1478: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1378 -Patch1479: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1379 -Patch1480: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1380 -Patch1481: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1381 -Patch1482: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1382 -Patch1483: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1383 -Patch1484: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1384 -Patch1485: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1385 -Patch1486: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1386 -Patch1487: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1387 -Patch1488: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1388 -Patch1489: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1389 -Patch1490: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1390 -Patch1491: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1391 -Patch1492: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1392 -Patch1493: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1393 -Patch1494: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1394 -Patch1495: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1395 -Patch1496: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1396 -Patch1497: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1397 -Patch1498: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1398 -Patch1499: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1399 -Patch1500: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1400 -Patch1501: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1401 -Patch1502: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1402 -Patch1503: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1403 -Patch1504: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1404 -Patch1505: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1405 -Patch1506: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1406 -Patch1507: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1407 -Patch1508: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1408 -Patch1509: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1409 -Patch1510: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1410 -Patch1511: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1411 -Patch1512: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1412 -Patch1513: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1413 -Patch1514: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1414 -Patch1515: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1415 -Patch1516: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1416 -Patch1517: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1417 -Patch1518: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1418 -Patch1519: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1419 -Patch1520: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1420 -Patch1521: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1421 -Patch1522: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1422 -Patch1523: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1423 -Patch1524: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1424 -Patch1525: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1425 -Patch1526: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1426 -Patch1527: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1427 -Patch1528: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1428 -Patch1529: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1429 -Patch1530: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1430 -Patch1531: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1431 -Patch1532: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1432 -Patch1533: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1433 -Patch1534: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1434 -Patch1535: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1435 -Patch1536: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1436 -Patch1537: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1437 -Patch1538: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1438 -Patch1539: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1439 -Patch1540: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1440 -Patch1541: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1441 -Patch1542: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1442 -Patch1543: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1443 -Patch1544: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1444 -Patch1545: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1445 -Patch1546: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1446 -Patch1547: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1447 -Patch1548: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1448 -Patch1549: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1449 -Patch1550: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1450 -Patch1551: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1451 -Patch1552: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1452 -Patch1553: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1453 -Patch1554: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1454 -Patch1555: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1455 -Patch1556: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1456 -Patch1557: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1457 -Patch1558: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1458 -Patch1559: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1459 -Patch1560: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1460 -Patch1561: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1461 -Patch1562: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1462 -Patch1563: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1463 -Patch1564: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1464 -Patch1565: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1465 -Patch1566: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1466 -Patch1567: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1467 -Patch1568: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1468 -Patch1569: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1469 -Patch1570: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1470 -Patch1571: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1471 -Patch1572: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1472 -Patch1573: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1473 -Patch1574: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1474 -Patch1575: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1475 -Patch1576: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1476 -Patch1577: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1477 -Patch1578: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1478 -Patch1579: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1479 -Patch1580: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1480 -Patch1581: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1481 -Patch1582: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1482 -Patch1583: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1483 -Patch1584: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1484 -Patch1585: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1485 -Patch1586: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1486 -Patch1587: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1487 -Patch1588: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1488 -Patch1589: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1489 -Patch1590: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1490 -Patch1591: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1491 -Patch1592: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1492 -Patch1593: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1493 -Patch1594: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1494 -Patch1595: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1495 -Patch1596: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1496 -Patch1597: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1497 -Patch1598: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1498 -Patch1599: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1499 -Patch1600: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1500 -Patch1601: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1501 -Patch1602: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1502 -Patch1603: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1503 -Patch1604: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1504 -Patch1605: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1505 -Patch1606: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1506 -Patch1607: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1507 -Patch1608: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1508 -Patch1609: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1509 -Patch1610: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1510 -Patch1611: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1511 -Patch1612: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1512 -Patch1613: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1513 -Patch1614: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1514 -Patch1615: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1515 -Patch1616: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1516 -Patch1617: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1517 -Patch1618: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1518 -Patch1619: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1519 -Patch1620: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1520 -Patch1621: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1521 -Patch1622: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1522 -Patch1623: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1523 -Patch1624: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1524 -Patch1625: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1525 -Patch1626: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1526 -Patch1627: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1527 -Patch1628: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1528 -Patch1629: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1529 -Patch1630: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1530 -Patch1631: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1531 -Patch1632: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1532 -Patch1633: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1533 -Patch1634: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1534 -Patch1635: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1535 -Patch1636: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1536 -Patch1637: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1537 -Patch1638: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1538 -Patch1639: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1539 -Patch1640: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1540 -Patch1641: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1541 -Patch1642: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1542 -Patch1643: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1543 -Patch1644: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1544 -Patch1645: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1545 -Patch1646: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1546 -Patch1647: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1547 -Patch1648: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1548 -Patch1649: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1549 -Patch1650: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1550 -Patch1651: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1551 -Patch1652: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1552 -Patch1653: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1553 -Patch1654: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1554 -Patch1655: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1555 -Patch1656: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1556 -Patch1657: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1557 -Patch1658: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1558 -Patch1659: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1559 -Patch1660: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1560 -Patch1661: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1561 -Patch1662: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1562 -Patch1663: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1563 -Patch1664: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1564 -Patch1665: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1565 -Patch1666: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1566 -Patch1667: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1567 -Patch1668: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1568 -Patch1669: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1569 -Patch1670: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1570 -Patch1671: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1571 -Patch1672: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1572 -Patch1673: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1573 -Patch1674: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1574 -Patch1675: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1575 -Patch1676: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1576 -Patch1677: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1577 -Patch1678: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1578 -Patch1679: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1579 -Patch1680: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1580 -Patch1681: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1581 -Patch1682: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1582 -Patch1683: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1583 -Patch1684: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1584 -Patch1685: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1585 -Patch1686: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1586 -Patch1687: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1587 -Patch1688: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1588 -Patch1689: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1589 -Patch1690: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1590 -Patch1691: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1591 -Patch1692: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1592 -Patch1693: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1593 -Patch1694: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1594 -Patch1695: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1595 -Patch1696: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1596 -Patch1697: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1597 -Patch1698: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1598 -Patch1699: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1599 -Patch1700: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1600 -Patch1701: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1601 -Patch1702: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1602 -Patch1703: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1603 -Patch1704: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1604 -Patch1705: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1605 -Patch1706: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1606 -Patch1707: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1607 -Patch1708: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1608 -Patch1709: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1609 -Patch1710: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1610 -Patch1711: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1611 -Patch1712: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1612 -Patch1713: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1613 -Patch1714: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1614 -Patch1715: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1615 -Patch1716: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1616 -Patch1717: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1617 -Patch1718: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1618 -Patch1719: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1619 -Patch1720: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1620 -Patch1721: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1621 -Patch1722: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1622 -Patch1723: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1623 -Patch1724: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1624 -Patch1725: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1625 -Patch1726: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1626 -Patch1727: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1627 -Patch1728: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1628 -Patch1729: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1629 -Patch1730: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1630 -Patch1731: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1631 -Patch1732: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1632 -Patch1733: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1633 -Patch1734: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1634 -Patch1735: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1635 -Patch1736: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1636 -Patch1737: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1637 -Patch1738: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1638 -Patch1739: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1639 -Patch1740: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1640 -Patch1741: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1641 -Patch1742: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1642 -Patch1743: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1643 -Patch1744: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1644 -Patch1745: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1645 -Patch1746: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1646 -Patch1747: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1647 -Patch1748: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1648 -Patch1749: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1649 -Patch1750: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1650 -Patch1751: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1651 -Patch1752: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1652 -Patch1753: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1653 -Patch1754: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1654 -Patch1755: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1655 -Patch1756: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1656 -Patch1757: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1657 -Patch1758: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1658 -Patch1759: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1659 -Patch1760: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1660 -Patch1761: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1661 -Patch1762: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1662 -Patch1763: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1663 -Patch1764: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1664 -Patch1765: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1665 -Patch1766: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1666 -Patch1767: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1667 -Patch1768: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1668 -Patch1769: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1669 -Patch1770: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1670 -Patch1771: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1671 -Patch1772: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1672 -Patch1773: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1673 -Patch1774: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1674 -Patch1775: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1675 -Patch1776: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1676 -Patch1777: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1677 -Patch1778: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1678 -Patch1779: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1679 -Patch1780: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1680 -Patch1781: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1681 -Patch1782: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1682 -Patch1783: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1683 -Patch1784: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1684 -Patch1785: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1685 -Patch1786: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1686 -Patch1787: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1687 -Patch1788: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1688 -Patch1789: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1689 -Patch1790: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1690 -Patch1791: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1691 -Patch1792: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1692 -Patch1793: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1693 -Patch1794: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1694 -Patch1795: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1695 -Patch1796: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1696 -Patch1797: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1697 -Patch1798: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1698 -Patch1799: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1699 -Patch1800: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1700 -Patch1801: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1701 -Patch1802: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1702 -Patch1803: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1703 -Patch1804: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1704 -Patch1805: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1705 -Patch1806: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1706 -Patch1807: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1707 -Patch1808: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1708 -Patch1809: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1709 -Patch1810: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1710 -Patch1811: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1711 -Patch1812: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1712 -Patch1813: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1713 -Patch1814: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1714 -Patch1815: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1715 -Patch1816: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1716 -Patch1817: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1717 -Patch1818: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1718 -Patch1819: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1719 -Patch1820: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1720 -Patch1821: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1721 -Patch1822: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1722 -Patch1823: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1723 -Patch1824: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1724 -Patch1825: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1725 -Patch1826: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1726 -Patch1827: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1727 -Patch1828: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1728 -Patch1829: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1729 -Patch1830: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1730 -Patch1831: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1731 -Patch1832: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1732 -Patch1833: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1733 -Patch1834: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1734 -Patch1835: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1735 -Patch1836: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1736 -Patch1837: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1737 -Patch1838: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1738 -Patch1839: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1739 -Patch1840: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1740 -Patch1841: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1741 -Patch1842: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1742 -Patch1843: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1743 -Patch1844: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1744 -Patch1845: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1745 -Patch1846: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1746 -Patch1847: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1747 -Patch1848: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1748 -Patch1849: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1749 -Patch1850: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1750 -Patch1851: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1751 -Patch1852: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1752 -Patch1853: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1753 -Patch1854: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1754 -Patch1855: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1755 -Patch1856: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1756 -Patch1857: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1757 -Patch1858: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1758 -Patch1859: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1759 -Patch1860: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1760 -Patch1861: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1761 -Patch1862: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1762 -Patch1863: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1763 -Patch1864: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1764 -Patch1865: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1765 -Patch1866: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1766 -Patch1867: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1767 -Patch1868: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1768 -Patch1869: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1769 -Patch1870: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1770 -Patch1871: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1771 -Patch1872: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1772 -Patch1873: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1773 -Patch1874: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1774 -Patch1875: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1775 -Patch1876: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1776 -Patch1877: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1777 -Patch1878: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1778 -Patch1879: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1779 -Patch1880: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1780 -Patch1881: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1781 -Patch1882: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1782 -Patch1883: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1783 -Patch1884: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1784 -Patch1885: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1785 -Patch1886: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1786 -Patch1887: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1787 -Patch1888: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1788 -Patch1889: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1789 -Patch1890: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1790 -Patch1891: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1791 -Patch1892: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1792 -Patch1893: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1793 -Patch1894: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1794 -Patch1895: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1795 -Patch1896: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1796 -Patch1897: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1797 -Patch1898: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1798 -Patch1899: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1799 -Patch1900: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1800 -Patch1901: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1801 -Patch1902: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1802 -Patch1903: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1803 -Patch1904: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1804 -Patch1905: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1805 -Patch1906: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1806 -Patch1907: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1807 -Patch1908: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1808 -Patch1909: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1809 -Patch1910: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1810 -Patch1911: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1811 -Patch1912: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1812 -Patch1913: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1813 -Patch1914: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1814 -Patch1915: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1815 -Patch1916: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1816 -Patch1917: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1817 -Patch1918: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1818 -Patch1919: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1819 -Patch1920: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1820 -Patch1921: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1821 -Patch1922: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1822 -Patch1923: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1823 -Patch1924: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1824 -Patch1925: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1825 -Patch1926: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1826 -Patch1927: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1827 -Patch1928: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1828 -Patch1929: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1829 -Patch1930: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1830 -Patch1931: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1831 -Patch1932: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1832 -Patch1933: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1833 -Patch1934: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1834 -Patch1935: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1835 -Patch1936: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1836 -Patch1937: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1837 -Patch1938: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1838 -Patch1939: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1839 -Patch1940: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1840 -Patch1941: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1841 -Patch1942: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1842 -Patch1943: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1843 -Patch1944: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1844 -Patch1945: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1845 -Patch1946: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1846 -Patch1947: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1847 -Patch1948: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1848 -Patch1949: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1849 -Patch1950: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1850 -Patch1951: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1851 -Patch1952: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1852 -Patch1953: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1853 -Patch1954: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1854 -Patch1955: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1855 -Patch1956: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1856 -Patch1957: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1857 -Patch1958: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1858 -Patch1959: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1859 -Patch1960: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1860 -Patch1961: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1861 -Patch1962: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1862 -Patch1963: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1863 -Patch1964: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1864 -Patch1965: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1865 -Patch1966: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1866 -Patch1967: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1867 -Patch1968: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1868 -Patch1969: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1869 -Patch1970: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1870 -Patch1971: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1871 -Patch1972: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1872 -Patch1973: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1873 -Patch1974: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1874 -Patch1975: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1875 -Patch1976: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1876 -Patch1977: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1877 -Patch1978: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1878 -Patch1979: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1879 -Patch1980: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1880 -Patch1981: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1881 -Patch1982: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1882 -Patch1983: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1883 -Patch1984: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1884 -Patch1985: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1885 -Patch1986: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1886 -Patch1987: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1887 -Patch1988: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1888 -Patch1989: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1889 -Patch1990: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1890 -Patch1991: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1891 -Patch1992: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1892 -Patch1993: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1893 -Patch1994: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1894 -Patch1995: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1895 -Patch1996: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1896 -Patch1997: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1897 -Patch1998: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1898 -Patch1999: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1899 -Patch2000: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1900 -Patch2001: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1901 -Patch2002: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1902 -Patch2003: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1903 -Patch2004: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1904 -Patch2005: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1905 -Patch2006: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1906 -Patch2007: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1907 -Patch2008: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1908 -Patch2009: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1909 -Patch2010: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1910 -Patch2011: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1911 -Patch2012: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1912 -Patch2013: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1913 -Patch2014: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1914 -Patch2015: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1915 -Patch2016: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1916 -Patch2017: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1917 -Patch2018: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1918 -Patch2019: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1919 -Patch2020: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1920 -Patch2021: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1921 -Patch2022: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1922 -Patch2023: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1923 -Patch2024: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1924 -Patch2025: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1925 -Patch2026: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1926 -Patch2027: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1927 -Patch2028: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1928 -Patch2029: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1929 -Patch2030: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1930 -Patch2031: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1931 -Patch2032: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1932 -Patch2033: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1933 -Patch2034: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1934 -Patch2035: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1935 -Patch2036: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1936 -Patch2037: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1937 -Patch2038: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1938 -Patch2039: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1939 -Patch2040: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1940 -Patch2041: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1941 -Patch2042: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1942 -Patch2043: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1943 -Patch2044: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1944 -Patch2045: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1945 -Patch2046: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1946 -Patch2047: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1947 -Patch2048: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1948 -Patch2049: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1949 -Patch2050: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1950 -Patch2051: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1951 -Patch2052: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1952 -Patch2053: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1953 -Patch2054: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1954 -Patch2055: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1955 -Patch2056: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1956 -Patch2057: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1957 -Patch2058: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1958 -Patch2059: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1959 -Patch2060: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1960 -Patch2061: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1961 -Patch2062: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1962 -Patch2063: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1963 -Patch2064: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1964 -Patch2065: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1965 -Patch2066: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1966 -Patch2067: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1967 -Patch2068: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1968 -Patch2069: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1969 -Patch2070: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1970 -Patch2071: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1971 -Patch2072: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1972 -Patch2073: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1973 -Patch2074: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1974 -Patch2075: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1975 -Patch2076: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1976 -Patch2077: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1977 -Patch2078: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1978 -Patch2079: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1979 -Patch2080: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1980 -Patch2081: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1981 -Patch2082: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1982 -Patch2083: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1983 -Patch2084: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1984 -Patch2085: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1985 -Patch2086: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1986 -Patch2087: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1987 -Patch2088: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1988 -Patch2089: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1989 -Patch2090: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1990 -Patch2091: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1991 -Patch2092: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1992 -Patch2093: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1993 -Patch2094: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1994 -Patch2095: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1995 -Patch2096: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1996 -Patch2097: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1997 -Patch2098: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1998 -Patch2099: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.1999 -Patch2100: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2000 -Patch2101: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2001 -Patch2102: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2002 -Patch2103: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2003 -Patch2104: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2004 -Patch2105: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2005 -Patch2106: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2006 -Patch2107: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2007 -Patch2108: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2008 -Patch2109: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2009 -Patch2110: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2010 -Patch2111: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2011 -Patch2112: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2012 -Patch2113: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2013 -Patch2114: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2014 -Patch2115: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2015 -Patch2116: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2016 -Patch2117: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2017 -Patch2118: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2018 -Patch2119: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2019 -Patch2120: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2020 -Patch2121: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2021 -Patch2122: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2022 -Patch2123: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2023 -Patch2124: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2024 -Patch2125: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2025 -Patch2126: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2026 -Patch2127: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2027 -Patch2128: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2028 -Patch2129: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2029 -Patch2130: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2030 -Patch2131: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2031 -Patch2132: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2032 -Patch2133: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2033 -Patch2134: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2034 -Patch2135: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2035 -Patch2136: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2036 -Patch2137: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2037 -Patch2138: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2038 -Patch2139: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2039 -Patch2140: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2040 -Patch2141: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2041 -Patch2142: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2042 -Patch2143: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2043 -Patch2144: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2044 -Patch2145: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2045 -Patch2146: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2046 -Patch2147: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2047 -Patch2148: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2048 -Patch2149: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2049 -Patch2150: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2050 -Patch2151: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2051 -Patch2152: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2052 -Patch2153: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2053 -Patch2154: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2054 -Patch2155: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2055 -Patch2156: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2056 -Patch2157: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2057 -Patch2158: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2058 -Patch2159: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2059 -Patch2160: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2060 -Patch2161: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2061 -Patch2162: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2062 -Patch2163: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2063 -Patch2164: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2064 -Patch2165: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2065 -Patch2166: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2066 -Patch2167: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2067 -Patch2168: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2068 -Patch2169: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2069 -Patch2170: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2070 -Patch2171: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2071 -Patch2172: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2072 -Patch2173: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2073 -Patch2174: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2074 -Patch2175: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2075 -Patch2176: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2076 -Patch2177: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2077 -Patch2178: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2078 -Patch2179: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2079 -Patch2180: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2080 -Patch2181: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2081 -Patch2182: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2082 -Patch2183: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2083 -Patch2184: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2084 -Patch2185: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2085 -Patch2186: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2086 -Patch2187: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2087 -Patch2188: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2088 -Patch2189: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2089 -Patch2190: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2090 -Patch2191: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2091 -Patch2192: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2092 -Patch2193: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2093 -Patch2194: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2094 -Patch2195: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2095 -Patch2196: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2096 -Patch2197: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2097 -Patch2198: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2098 -Patch2199: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2099 -Patch2200: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2100 -Patch2201: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2101 -Patch2202: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2102 -Patch2203: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2103 -Patch2204: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2104 -Patch2205: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2105 -Patch2206: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2106 -Patch2207: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2107 -Patch2208: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2108 -Patch2209: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2109 -Patch2210: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2110 -Patch2211: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2111 -Patch2212: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2112 -Patch2213: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2113 -Patch2214: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2114 -Patch2215: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2115 -Patch2216: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2116 -Patch2217: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2117 -Patch2218: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2118 -Patch2219: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2119 -Patch2220: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2120 -Patch2221: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2121 -Patch2222: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2122 -Patch2223: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2123 -Patch2224: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2124 -Patch2225: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2125 -Patch2226: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2126 -Patch2227: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2127 -Patch2228: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2128 -Patch2229: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2129 -Patch2230: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2130 -Patch2231: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2131 -Patch2232: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2132 -Patch2233: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2133 -Patch2234: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2134 -Patch2235: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2135 -Patch2236: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2136 -Patch2237: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2137 -Patch2238: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2138 -Patch2239: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2139 -Patch2240: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2140 -Patch2241: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2141 -Patch2242: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2142 -Patch2243: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2143 -Patch2244: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2144 -Patch2245: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2145 -Patch2246: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2146 -Patch2247: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2147 -Patch2248: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2148 -Patch2249: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2149 -Patch2250: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2150 -Patch2251: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2151 -Patch2252: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2152 -Patch2253: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2153 -Patch2254: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2154 -Patch2255: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2155 -Patch2256: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2156 -Patch2257: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2157 -Patch2258: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2158 -Patch2259: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2159 -Patch2260: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2160 -Patch2261: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2161 -Patch2262: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2162 -Patch2263: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2163 -Patch2264: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2164 -Patch2265: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2165 -Patch2266: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2166 -Patch2267: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2167 -Patch2268: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2168 -Patch2269: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2169 -Patch2270: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2170 -Patch2271: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2171 -Patch2272: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2172 -Patch2273: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2173 -Patch2274: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2174 -Patch2275: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2175 -Patch2276: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2176 -Patch2277: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2177 -Patch2278: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2178 -Patch2279: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2179 -Patch2280: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2180 -Patch2281: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2181 -Patch2282: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2182 -Patch2283: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2183 -Patch2284: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2184 -Patch2285: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2185 -Patch2286: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2186 -Patch2287: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2187 -Patch2288: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2188 -Patch2289: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2189 -Patch2290: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2190 -Patch2291: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2191 -Patch2292: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2192 -Patch2293: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2193 -Patch2294: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2194 -Patch2295: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2195 -Patch2296: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2196 -Patch2297: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2197 -Patch2298: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2198 -Patch2299: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2199 -Patch2300: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2200 -Patch2301: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2201 -Patch2302: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2202 -Patch2303: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2203 -Patch2304: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2204 -Patch2305: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2205 -Patch2306: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2206 -Patch2307: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2207 -Patch2308: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2208 -Patch2309: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2209 -Patch2310: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2210 -Patch2311: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2211 -Patch2312: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2212 -Patch2313: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2213 -Patch2314: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2214 -Patch2315: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2215 -Patch2316: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2216 -Patch2317: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2217 -Patch2318: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2218 -Patch2319: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2219 -Patch2320: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2220 -Patch2321: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2221 -Patch2322: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2222 -Patch2323: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2223 -Patch2324: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2224 -Patch2325: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2225 -Patch2326: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2226 -Patch2327: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2227 -Patch2328: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2228 -Patch2329: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2229 -Patch2330: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2230 -Patch2331: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2231 -Patch2332: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2232 -Patch2333: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2233 -Patch2334: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2234 -Patch2335: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2235 -Patch2336: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2236 -Patch2337: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2237 -Patch2338: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2238 -Patch2339: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2239 -Patch2340: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2240 -Patch2341: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2241 -Patch2342: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2242 -Patch2343: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2243 -Patch2344: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2244 -Patch2345: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2245 -Patch2346: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2246 -Patch2347: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2247 -Patch2348: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2248 -Patch2349: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2249 -Patch2350: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2250 -Patch2351: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2251 -Patch2352: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2252 -Patch2353: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2253 -Patch2354: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2254 -Patch2355: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2255 -Patch2356: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2256 -Patch2357: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2257 -Patch2358: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2258 -Patch2359: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2259 -Patch2360: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2260 -Patch2361: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2261 -Patch2362: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2262 -Patch2363: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2263 -Patch2364: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2264 -Patch2365: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2265 -Patch2366: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2266 -Patch2367: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2267 -Patch2368: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2268 -Patch2369: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2269 -Patch2370: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2270 -Patch2371: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2271 -Patch2372: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2272 -Patch2373: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2273 -Patch2374: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2274 -Patch2375: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2275 -Patch2376: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2276 -Patch2377: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2277 -Patch2378: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2278 -Patch2379: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2279 -Patch2380: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2280 -Patch2381: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2281 -Patch2382: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2282 -Patch2383: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2283 -Patch2384: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2284 -Patch2385: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2285 -Patch2386: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2286 -Patch2387: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2287 -Patch2388: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2288 -Patch2389: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2289 -Patch2390: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2290 -Patch2391: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2291 -Patch2392: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2292 -Patch2393: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2293 -Patch2394: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2294 -Patch2395: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2295 -Patch2396: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2296 -Patch2397: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2297 -Patch2398: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2298 -Patch2399: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2299 -Patch2400: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2300 -Patch2401: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2301 -Patch2402: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2302 -Patch2403: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2303 -Patch2404: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2304 -Patch2405: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2305 -Patch2406: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2306 -Patch2407: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2307 -Patch2408: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2308 -Patch2409: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2309 -Patch2410: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2310 -Patch2411: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2311 -Patch2412: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2312 -Patch2413: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2313 -Patch2414: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2314 -Patch2415: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2315 -Patch2416: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2316 -Patch2417: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2317 -Patch2418: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2318 -Patch2419: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2319 -Patch2420: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2320 -Patch2421: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2321 -Patch2422: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2322 -Patch2423: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2323 -Patch2424: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2324 -Patch2425: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2325 -Patch2426: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2326 -Patch2427: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2327 -Patch2428: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2328 -Patch2429: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2329 -Patch2430: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2330 -Patch2431: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2331 -Patch2432: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2332 -Patch2433: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2333 -Patch2434: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2334 -Patch2435: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2335 -Patch2436: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2336 -Patch2437: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2337 -Patch2438: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2338 -Patch2439: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2339 -Patch2440: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2340 -Patch2441: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2341 -Patch2442: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2342 -Patch2443: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2343 -Patch2444: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2344 -Patch2445: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2345 -Patch2446: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2346 -Patch2447: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2347 -Patch2448: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2348 -Patch2449: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2349 -Patch2450: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2350 -Patch2451: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2351 -Patch2452: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2352 -Patch2453: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2353 -Patch2454: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2354 -Patch2455: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2355 -Patch2456: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2356 -Patch2457: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2357 -Patch2458: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2358 -Patch2459: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2359 -Patch2460: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2360 -Patch2461: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2361 -Patch2462: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2362 -Patch2463: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2363 -Patch2464: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2364 -Patch2465: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2365 -Patch2466: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2366 -Patch2467: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2367 -Patch2468: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2368 -Patch2469: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2369 -Patch2470: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2370 -Patch2471: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2371 -Patch2472: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2372 -Patch2473: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2373 -Patch2474: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2374 -Patch2475: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2375 -Patch2476: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2376 -Patch2477: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2377 -Patch2478: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2378 -Patch2479: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2379 -Patch2480: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2380 -Patch2481: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2381 -Patch2482: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2382 -Patch2483: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2383 -Patch2484: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2384 -Patch2485: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2385 -Patch2486: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2386 -Patch2487: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2387 -Patch2488: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2388 -Patch2489: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2389 -Patch2490: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2390 -Patch2491: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2391 -Patch2492: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2392 -Patch2493: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2393 -Patch2494: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2394 -Patch2495: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2395 -Patch2496: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2396 -Patch2497: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2397 -Patch2498: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2398 -Patch2499: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2399 -Patch2500: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2400 -Patch2501: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2401 -Patch2502: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2402 -Patch2503: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2403 -Patch2504: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2404 -Patch2505: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2405 -Patch2506: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2406 -Patch2507: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2407 -Patch2508: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2408 -Patch2509: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2409 -Patch2510: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2410 -Patch2511: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2411 -Patch2512: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2412 -Patch2513: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2413 -Patch2514: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2414 -Patch2515: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2415 -Patch2516: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2416 -Patch2517: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2417 -Patch2518: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2418 -Patch2519: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2419 -Patch2520: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2420 -Patch2521: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2421 -Patch2522: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2422 -Patch2523: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2423 -Patch2524: ftp://ftp.vim.org/pub/vim/patches/%{V_vl}/%{V_vl}.2424 # build information BuildPreReq: OpenPKG, openpkg >= 20160101, ncurses