From 6c16a2f5ae219d4064d6ee7a5fb130fe60d5d25c Mon Sep 17 00:00:00 2001 From: Phoenix Tsui Date: Tue, 23 May 2017 11:26:14 +0800 Subject: [PATCH] Update Lodash to 4.17.4 --- autoload/syntax/underscore.coffee.vim | 36 ++++++++++++++++++++--- autoload/syntax/underscore.javascript.vim | 36 ++++++++++++++++++++--- autoload/syntax/underscore.ls.vim | 36 ++++++++++++++++++++--- autoload/syntax/underscore.typescript.vim | 36 ++++++++++++++++++++--- 4 files changed, 128 insertions(+), 16 deletions(-) diff --git a/autoload/syntax/underscore.coffee.vim b/autoload/syntax/underscore.coffee.vim index 376faa6..d49cce4 100644 --- a/autoload/syntax/underscore.coffee.vim +++ b/autoload/syntax/underscore.coffee.vim @@ -10,7 +10,6 @@ syntax keyword coffeeunderscore _ containedin=ALLBUT,coffeeComment,coffeeLineComment,coffeeString,coffeeTemplate,coffeeTemplateSubstitution " syntax match coffeeunderscoredot contained /\./ nextgroup=@coffee_Functions " syntax match coffeeunderscoredot contained /([^)]*)\./ nextgroup=@coffee_Functions - syntax cluster coffee_Functions contains=coffee_collections,coffee_strings,coffee_arrays,coffee_functions,coffee_objects,coffee_chaining,coffee_utility,coffee_lodash,coffee_math,coffee_number syntax match coffee_collections contained /contains/ @@ -24,6 +23,8 @@ syntax keyword coffee_collections contained partition sortByAll includes callbac " lodash 4.0.0 syntax keyword coffee_collections contained flatMap commit next plant reverse toJSON valueOf syntax keyword coffee_collections contained forEachRight invokeMap keyBy orderBy sample sampleSize +" lodash 4.7.0 +syntax keyword coffee_collections contained flatMapDeep flatMapDepth " lodash 3.0.0 syntax keyword coffee_strings contained camelCase capitalize deburr endsWith escapeRegExp @@ -48,6 +49,14 @@ syntax keyword coffee_arrays contained join pull pullAll pullAllBy remove slice syntax keyword coffee_arrays contained sortedLastIndexBy sortedLastIndexOf sortedUniq sortedUniqBy tail syntax keyword coffee_arrays contained take takeRightWhile unionBy unionWith uniqBy uniqWith unzipWith syntax keyword coffee_arrays contained xorBy xorWith zipObject zipWith +" lodash 4.1.0 +syntax keyword coffee_arrays contained zipObjectDeep +" lodash 4.4.0 +syntax keyword coffee_arrays contained flattenDepth +" lodash 4.6.0 +syntax keyword coffee_arrays contained pullAllWith +" lodash 4.11.0 +syntax keyword coffee_arrays contained nth syntax keyword coffee_functions contained bind bindAll partial memoize delay throttle debounce syntax keyword coffee_functions contained once after before wrap negate compose flow flowRight @@ -55,7 +64,7 @@ syntax keyword coffee_functions contained once after before wrap negate compose syntax keyword coffee_functions contained ary before curryRight negate rearg syntax keyword coffee_functions contained backflow compose partial cancel " lodash 4.0.0 -syntax keyword coffee_functions contained curry defer eachRight findLast flip negate overArgs rest spread unary +syntax keyword coffee_functions contained curry defer eachRight findLast flip negate overArgs rest spread unary syntax keyword coffee_objects contained keys values pairs invert functions extend pick omit syntax keyword coffee_objects contained defaults clone tap has isEqual isEmpty isElement isArray @@ -70,7 +79,12 @@ syntax keyword coffee_objects contained assignIn assignInWith assignWith default syntax keyword coffee_objects contained findKey findLastKey forIn forInRight forOwn forOwnRight syntax keyword coffee_objects contained functionsIn hasIn mergeWith omitBy pickBy setWith toPairs syntax keyword coffee_objects contained toPairsIn transform unset -" +" lodash 4.1.0 +syntax keyword coffee_objects contained invertBy +" lodash 4.6.0 +syntax keyword coffee_objects contained updateWith update + + syntax keyword coffee_utility contained noConflict identify times random mixin uniqueId syntax keyword coffee_utility contained escape unescape result template iteratee noop " lodash 3.0.0 @@ -78,6 +92,10 @@ syntax keyword coffee_utility contained attempt matches matchesProperty property " lodash 4.0.0 syntax keyword coffee_utility contained cond conforms flow identity matches method methodOf nthArg syntax keyword coffee_utility contained over overEvery overSome rangeRight times toPath uniqueId +" lodash 4.13.0 +syntax keyword coffee_utility contained stubTrue stubString stubObject stubFalse stubArray +" lodash 4.14.0 +syntax keyword coffee_utility contained defaultTo syntax keyword coffee_chaining contained chain value thru @@ -93,11 +111,21 @@ syntax keyword coffee_lodash contained isError isMatch isNative isTypedArray toP syntax keyword coffee_lodash contained clone cloneDeepWith cloneWith eq gt gte isArrayLike isArrayLikeObject syntax keyword coffee_lodash contained isEqualWith isInteger isLength isMatchWith isNil isObjectLike isSafeInteger syntax keyword coffee_lodash contained isSymbol lt lte toInteger toLength toNumber toSafeInteger toString -syntax keyword coffee_lodash contained templateSettings evaluate imports interpolate varible +syntax keyword coffee_lodash contained templateSettings evaluate imports interpolate varible syntax keyword coffee_lodash contained VERSION +" lodash 4.3.0 +syntax keyword coffee_arrays contained isArrayBuffer isBuffer isMap isSet isWeakMap isWeakSet +" lodash 4.4.0 +syntax keyword coffee_arrays contained castArray +" lodash 4.12.0 +syntax keyword coffee_arrays contained toFinite +" lodash 4.14.0 +syntax keyword coffee_arrays contained conformsTo " lodash 4.0.0 syntax keyword coffee_math contained add ceil floor max maxBy mean min minBy round subtract sum sumBy +" lodash 4.7.0 +syntax keyword coffee_math contained divide multiply meanBy syntax keyword coffee_number contained clamp inRange " Define the default highlighting. diff --git a/autoload/syntax/underscore.javascript.vim b/autoload/syntax/underscore.javascript.vim index 2b50b3d..e6b1a90 100644 --- a/autoload/syntax/underscore.javascript.vim +++ b/autoload/syntax/underscore.javascript.vim @@ -10,7 +10,6 @@ syntax keyword javascriptunderscore _ containedin=ALLBUT,javascriptComment,javascriptLineComment,javascriptString,javascriptTemplate,javascriptTemplateSubstitution " syntax match javascriptunderscoredot contained /\./ nextgroup=@javascript_Functions " syntax match javascriptunderscoredot contained /([^)]*)\./ nextgroup=@javascript_Functions - syntax cluster javascript_Functions contains=javascript_collections,javascript_strings,javascript_arrays,javascript_functions,javascript_objects,javascript_chaining,javascript_utility,javascript_lodash,javascript_math,javascript_number syntax match javascript_collections contained /contains/ @@ -24,6 +23,8 @@ syntax keyword javascript_collections contained partition sortByAll includes cal " lodash 4.0.0 syntax keyword javascript_collections contained flatMap commit next plant reverse toJSON valueOf syntax keyword javascript_collections contained forEachRight invokeMap keyBy orderBy sample sampleSize +" lodash 4.7.0 +syntax keyword javascript_collections contained flatMapDeep flatMapDepth " lodash 3.0.0 syntax keyword javascript_strings contained camelCase capitalize deburr endsWith escapeRegExp @@ -48,6 +49,14 @@ syntax keyword javascript_arrays contained join pull pullAll pullAllBy remove sl syntax keyword javascript_arrays contained sortedLastIndexBy sortedLastIndexOf sortedUniq sortedUniqBy tail syntax keyword javascript_arrays contained take takeRightWhile unionBy unionWith uniqBy uniqWith unzipWith syntax keyword javascript_arrays contained xorBy xorWith zipObject zipWith +" lodash 4.1.0 +syntax keyword javascript_arrays contained zipObjectDeep +" lodash 4.4.0 +syntax keyword javascript_arrays contained flattenDepth +" lodash 4.6.0 +syntax keyword javascript_arrays contained pullAllWith +" lodash 4.11.0 +syntax keyword javascript_arrays contained nth syntax keyword javascript_functions contained bind bindAll partial memoize delay throttle debounce syntax keyword javascript_functions contained once after before wrap negate compose flow flowRight @@ -55,7 +64,7 @@ syntax keyword javascript_functions contained once after before wrap negate comp syntax keyword javascript_functions contained ary before curryRight negate rearg syntax keyword javascript_functions contained backflow compose partial cancel " lodash 4.0.0 -syntax keyword javascript_functions contained curry defer eachRight findLast flip negate overArgs rest spread unary +syntax keyword javascript_functions contained curry defer eachRight findLast flip negate overArgs rest spread unary syntax keyword javascript_objects contained keys values pairs invert functions extend pick omit syntax keyword javascript_objects contained defaults clone tap has isEqual isEmpty isElement isArray @@ -70,7 +79,12 @@ syntax keyword javascript_objects contained assignIn assignInWith assignWith def syntax keyword javascript_objects contained findKey findLastKey forIn forInRight forOwn forOwnRight syntax keyword javascript_objects contained functionsIn hasIn mergeWith omitBy pickBy setWith toPairs syntax keyword javascript_objects contained toPairsIn transform unset -" +" lodash 4.1.0 +syntax keyword javascript_objects contained invertBy +" lodash 4.6.0 +syntax keyword javascript_objects contained updateWith update + + syntax keyword javascript_utility contained noConflict identify times random mixin uniqueId syntax keyword javascript_utility contained escape unescape result template iteratee noop " lodash 3.0.0 @@ -78,6 +92,10 @@ syntax keyword javascript_utility contained attempt matches matchesProperty prop " lodash 4.0.0 syntax keyword javascript_utility contained cond conforms flow identity matches method methodOf nthArg syntax keyword javascript_utility contained over overEvery overSome rangeRight times toPath uniqueId +" lodash 4.13.0 +syntax keyword javascript_utility contained stubTrue stubString stubObject stubFalse stubArray +" lodash 4.14.0 +syntax keyword javascript_utility contained defaultTo syntax keyword javascript_chaining contained chain value thru @@ -93,11 +111,21 @@ syntax keyword javascript_lodash contained isError isMatch isNative isTypedArray syntax keyword javascript_lodash contained clone cloneDeepWith cloneWith eq gt gte isArrayLike isArrayLikeObject syntax keyword javascript_lodash contained isEqualWith isInteger isLength isMatchWith isNil isObjectLike isSafeInteger syntax keyword javascript_lodash contained isSymbol lt lte toInteger toLength toNumber toSafeInteger toString -syntax keyword javascript_lodash contained templateSettings evaluate imports interpolate varible +syntax keyword javascript_lodash contained templateSettings evaluate imports interpolate varible syntax keyword javascript_lodash contained VERSION +" lodash 4.3.0 +syntax keyword javascript_arrays contained isArrayBuffer isBuffer isMap isSet isWeakMap isWeakSet +" lodash 4.4.0 +syntax keyword javascript_arrays contained castArray +" lodash 4.12.0 +syntax keyword javascript_arrays contained toFinite +" lodash 4.14.0 +syntax keyword javascript_arrays contained conformsTo " lodash 4.0.0 syntax keyword javascript_math contained add ceil floor max maxBy mean min minBy round subtract sum sumBy +" lodash 4.7.0 +syntax keyword javascript_math contained divide multiply meanBy syntax keyword javascript_number contained clamp inRange " Define the default highlighting. diff --git a/autoload/syntax/underscore.ls.vim b/autoload/syntax/underscore.ls.vim index e8dd6b7..49f2e1b 100644 --- a/autoload/syntax/underscore.ls.vim +++ b/autoload/syntax/underscore.ls.vim @@ -10,7 +10,6 @@ syntax keyword lsunderscore _ containedin=ALLBUT,lsComment,lsLineComment,lsString,lsTemplate,lsTemplateSubstitution " syntax match lsunderscoredot contained /\./ nextgroup=@ls_Functions " syntax match lsunderscoredot contained /([^)]*)\./ nextgroup=@ls_Functions - syntax cluster ls_Functions contains=ls_collections,ls_strings,ls_arrays,ls_functions,ls_objects,ls_chaining,ls_utility,ls_lodash,ls_math,ls_number syntax match ls_collections contained /contains/ @@ -24,6 +23,8 @@ syntax keyword ls_collections contained partition sortByAll includes callback " lodash 4.0.0 syntax keyword ls_collections contained flatMap commit next plant reverse toJSON valueOf syntax keyword ls_collections contained forEachRight invokeMap keyBy orderBy sample sampleSize +" lodash 4.7.0 +syntax keyword ls_collections contained flatMapDeep flatMapDepth " lodash 3.0.0 syntax keyword ls_strings contained camelCase capitalize deburr endsWith escapeRegExp @@ -48,6 +49,14 @@ syntax keyword ls_arrays contained join pull pullAll pullAllBy remove slice sort syntax keyword ls_arrays contained sortedLastIndexBy sortedLastIndexOf sortedUniq sortedUniqBy tail syntax keyword ls_arrays contained take takeRightWhile unionBy unionWith uniqBy uniqWith unzipWith syntax keyword ls_arrays contained xorBy xorWith zipObject zipWith +" lodash 4.1.0 +syntax keyword ls_arrays contained zipObjectDeep +" lodash 4.4.0 +syntax keyword ls_arrays contained flattenDepth +" lodash 4.6.0 +syntax keyword ls_arrays contained pullAllWith +" lodash 4.11.0 +syntax keyword ls_arrays contained nth syntax keyword ls_functions contained bind bindAll partial memoize delay throttle debounce syntax keyword ls_functions contained once after before wrap negate compose flow flowRight @@ -55,7 +64,7 @@ syntax keyword ls_functions contained once after before wrap negate compose flow syntax keyword ls_functions contained ary before curryRight negate rearg syntax keyword ls_functions contained backflow compose partial cancel " lodash 4.0.0 -syntax keyword ls_functions contained curry defer eachRight findLast flip negate overArgs rest spread unary +syntax keyword ls_functions contained curry defer eachRight findLast flip negate overArgs rest spread unary syntax keyword ls_objects contained keys values pairs invert functions extend pick omit syntax keyword ls_objects contained defaults clone tap has isEqual isEmpty isElement isArray @@ -70,7 +79,12 @@ syntax keyword ls_objects contained assignIn assignInWith assignWith defaultsDee syntax keyword ls_objects contained findKey findLastKey forIn forInRight forOwn forOwnRight syntax keyword ls_objects contained functionsIn hasIn mergeWith omitBy pickBy setWith toPairs syntax keyword ls_objects contained toPairsIn transform unset -" +" lodash 4.1.0 +syntax keyword ls_objects contained invertBy +" lodash 4.6.0 +syntax keyword ls_objects contained updateWith update + + syntax keyword ls_utility contained noConflict identify times random mixin uniqueId syntax keyword ls_utility contained escape unescape result template iteratee noop " lodash 3.0.0 @@ -78,6 +92,10 @@ syntax keyword ls_utility contained attempt matches matchesProperty propertyOf c " lodash 4.0.0 syntax keyword ls_utility contained cond conforms flow identity matches method methodOf nthArg syntax keyword ls_utility contained over overEvery overSome rangeRight times toPath uniqueId +" lodash 4.13.0 +syntax keyword ls_utility contained stubTrue stubString stubObject stubFalse stubArray +" lodash 4.14.0 +syntax keyword ls_utility contained defaultTo syntax keyword ls_chaining contained chain value thru @@ -93,11 +111,21 @@ syntax keyword ls_lodash contained isError isMatch isNative isTypedArray toPlain syntax keyword ls_lodash contained clone cloneDeepWith cloneWith eq gt gte isArrayLike isArrayLikeObject syntax keyword ls_lodash contained isEqualWith isInteger isLength isMatchWith isNil isObjectLike isSafeInteger syntax keyword ls_lodash contained isSymbol lt lte toInteger toLength toNumber toSafeInteger toString -syntax keyword ls_lodash contained templateSettings evaluate imports interpolate varible +syntax keyword ls_lodash contained templateSettings evaluate imports interpolate varible syntax keyword ls_lodash contained VERSION +" lodash 4.3.0 +syntax keyword ls_arrays contained isArrayBuffer isBuffer isMap isSet isWeakMap isWeakSet +" lodash 4.4.0 +syntax keyword ls_arrays contained castArray +" lodash 4.12.0 +syntax keyword ls_arrays contained toFinite +" lodash 4.14.0 +syntax keyword ls_arrays contained conformsTo " lodash 4.0.0 syntax keyword ls_math contained add ceil floor max maxBy mean min minBy round subtract sum sumBy +" lodash 4.7.0 +syntax keyword ls_math contained divide multiply meanBy syntax keyword ls_number contained clamp inRange " Define the default highlighting. diff --git a/autoload/syntax/underscore.typescript.vim b/autoload/syntax/underscore.typescript.vim index 1522942..a3e874f 100644 --- a/autoload/syntax/underscore.typescript.vim +++ b/autoload/syntax/underscore.typescript.vim @@ -10,7 +10,6 @@ syntax keyword typescriptunderscore _ containedin=ALLBUT,typescriptComment,typescriptLineComment,typescriptString,typescriptTemplate,typescriptTemplateSubstitution " syntax match typescriptunderscoredot contained /\./ nextgroup=@typescript_Functions " syntax match typescriptunderscoredot contained /([^)]*)\./ nextgroup=@typescript_Functions - syntax cluster typescript_Functions contains=typescript_collections,typescript_strings,typescript_arrays,typescript_functions,typescript_objects,typescript_chaining,typescript_utility,typescript_lodash,typescript_math,typescript_number syntax match typescript_collections contained /contains/ @@ -24,6 +23,8 @@ syntax keyword typescript_collections contained partition sortByAll includes cal " lodash 4.0.0 syntax keyword typescript_collections contained flatMap commit next plant reverse toJSON valueOf syntax keyword typescript_collections contained forEachRight invokeMap keyBy orderBy sample sampleSize +" lodash 4.7.0 +syntax keyword typescript_collections contained flatMapDeep flatMapDepth " lodash 3.0.0 syntax keyword typescript_strings contained camelCase capitalize deburr endsWith escapeRegExp @@ -48,6 +49,14 @@ syntax keyword typescript_arrays contained join pull pullAll pullAllBy remove sl syntax keyword typescript_arrays contained sortedLastIndexBy sortedLastIndexOf sortedUniq sortedUniqBy tail syntax keyword typescript_arrays contained take takeRightWhile unionBy unionWith uniqBy uniqWith unzipWith syntax keyword typescript_arrays contained xorBy xorWith zipObject zipWith +" lodash 4.1.0 +syntax keyword typescript_arrays contained zipObjectDeep +" lodash 4.4.0 +syntax keyword typescript_arrays contained flattenDepth +" lodash 4.6.0 +syntax keyword typescript_arrays contained pullAllWith +" lodash 4.11.0 +syntax keyword typescript_arrays contained nth syntax keyword typescript_functions contained bind bindAll partial memoize delay throttle debounce syntax keyword typescript_functions contained once after before wrap negate compose flow flowRight @@ -55,7 +64,7 @@ syntax keyword typescript_functions contained once after before wrap negate comp syntax keyword typescript_functions contained ary before curryRight negate rearg syntax keyword typescript_functions contained backflow compose partial cancel " lodash 4.0.0 -syntax keyword typescript_functions contained curry defer eachRight findLast flip negate overArgs rest spread unary +syntax keyword typescript_functions contained curry defer eachRight findLast flip negate overArgs rest spread unary syntax keyword typescript_objects contained keys values pairs invert functions extend pick omit syntax keyword typescript_objects contained defaults clone tap has isEqual isEmpty isElement isArray @@ -70,7 +79,12 @@ syntax keyword typescript_objects contained assignIn assignInWith assignWith def syntax keyword typescript_objects contained findKey findLastKey forIn forInRight forOwn forOwnRight syntax keyword typescript_objects contained functionsIn hasIn mergeWith omitBy pickBy setWith toPairs syntax keyword typescript_objects contained toPairsIn transform unset -" +" lodash 4.1.0 +syntax keyword typescript_objects contained invertBy +" lodash 4.6.0 +syntax keyword typescript_objects contained updateWith update + + syntax keyword typescript_utility contained noConflict identify times random mixin uniqueId syntax keyword typescript_utility contained escape unescape result template iteratee noop " lodash 3.0.0 @@ -78,6 +92,10 @@ syntax keyword typescript_utility contained attempt matches matchesProperty prop " lodash 4.0.0 syntax keyword typescript_utility contained cond conforms flow identity matches method methodOf nthArg syntax keyword typescript_utility contained over overEvery overSome rangeRight times toPath uniqueId +" lodash 4.13.0 +syntax keyword typescript_utility contained stubTrue stubString stubObject stubFalse stubArray +" lodash 4.14.0 +syntax keyword typescript_utility contained defaultTo syntax keyword typescript_chaining contained chain value thru @@ -93,11 +111,21 @@ syntax keyword typescript_lodash contained isError isMatch isNative isTypedArray syntax keyword typescript_lodash contained clone cloneDeepWith cloneWith eq gt gte isArrayLike isArrayLikeObject syntax keyword typescript_lodash contained isEqualWith isInteger isLength isMatchWith isNil isObjectLike isSafeInteger syntax keyword typescript_lodash contained isSymbol lt lte toInteger toLength toNumber toSafeInteger toString -syntax keyword typescript_lodash contained templateSettings evaluate imports interpolate varible +syntax keyword typescript_lodash contained templateSettings evaluate imports interpolate varible syntax keyword typescript_lodash contained VERSION +" lodash 4.3.0 +syntax keyword typescript_arrays contained isArrayBuffer isBuffer isMap isSet isWeakMap isWeakSet +" lodash 4.4.0 +syntax keyword typescript_arrays contained castArray +" lodash 4.12.0 +syntax keyword typescript_arrays contained toFinite +" lodash 4.14.0 +syntax keyword typescript_arrays contained conformsTo " lodash 4.0.0 syntax keyword typescript_math contained add ceil floor max maxBy mean min minBy round subtract sum sumBy +" lodash 4.7.0 +syntax keyword typescript_math contained divide multiply meanBy syntax keyword typescript_number contained clamp inRange " Define the default highlighting.