提交 26627616 编写于 作者: C CyrusNajmabadi

Add finer detail for camel cased matches.

上级 117e2f9b
...@@ -26,53 +26,59 @@ internal enum PatternMatchKind ...@@ -26,53 +26,59 @@ internal enum PatternMatchKind
// Note: CamelCased matches are ordered from best to worst. // Note: CamelCased matches are ordered from best to worst.
/// <summary>
/// All camel-humps in the pattern matched a camel-hump in the candidate. All camel-humps
/// in the candidate were matched by a camel-hump in the pattern.
///
/// Example: "CFPS" matching "CodeFixProviderService"
/// Example: "cfps" matching "CodeFixProviderService"
/// Example: "CoFiPrSe" matching "CodeFixProviderService"
/// </summary>
CamelCaseExact, CamelCaseExact,
CamelCasePrefix,
CamelCaseNonContiguousPrefix,
CamelCaseSubstring,
CamelCaseNonContiguousSubstring,
#if false
/// <summary> /// <summary>
/// The pattern matched the CamelCased candidate string. All humps in the pattern matched humps in /// All camel-humps in the pattern matched a camel-hump in the candidate. The first camel-hump
/// the candidate in order. The first hump in the pattern matched the first hump in the candidate /// in the pattern matched the first camel-hump in the candidate. There was no gap in the camel-
/// string. There were no unmatched humps in the candidate between matched humps. /// humps in the candidate that were matched.
/// ///
/// Examples: "CFP" matching "CodeFixProvider" as well as "CFP" matching "CodeFixProviderService". /// Example: "CFP" matching "CodeFixProviderService"
/// Example: "cfp" matching "CodeFixProviderService"
/// Example: "CoFiPRo" matching "CodeFixProviderService"
/// </summary> /// </summary>
CamelCaseContiguousFromStart, CamelCasePrefix,
/// <summary> /// <summary>
/// The pattern matched the CamelCased candidate string. All humps in the pattern matched some hump in /// All camel-humps in the pattern matched a camel-hump in the candidate. The first camel-hump
/// the candidate in order. The first hump in the pattern matched the first hump in the candidate string. /// in the pattern matched the first camel-hump in the candidate. There was at least one gap in
/// There was at least one hump in the candidate that was not matched that was between humps in the /// the camel-humps in the candidate that were matched.
/// candidate that were matched.
/// ///
/// Examples: "CPS" matching "CodeFixProviderService". Here 'Fix' was not matched, so the result was /// Example: "CP" matching "CodeFixProviderService"
/// not 'Contiguous'. /// Example: "cp" matching "CodeFixProviderService"
/// Example: "CoProv" matching "CodeFixProviderService"
/// </summary> /// </summary>
CamelCaseFromStart, CamelCaseNonContiguousPrefix,
/// <summary> /// <summary>
/// The pattern matched the CamelCased candidate string. All humps in the pattern matched humps in /// All camel-humps in the pattern matched a camel-hump in the candidate. The first camel-hump
/// the candidate in order. The first hump in the pattern did not match the first hump in the candidate /// in the pattern did not match the first camel-hump in the pattern. There was no gap in the camel-
/// string. There were no unmatched humps in the candidate between matched humps. /// humps in the candidate that were matched.
/// ///
/// Example: "FP" matching "CodeFixProviderService" /// Example: "FP" matching "CodeFixProviderService"
/// Example: "fp" matching "CodeFixProviderService"
/// Example: "FixPro" matching "CodeFixProviderService"
/// </summary> /// </summary>
CamelCaseContiguous, CamelCaseSubstring,
/// <summary> /// <summary>
/// The pattern matched the CamelCased candidate string. All humps in the pattern matched some hump in /// All camel-humps in the pattern matched a camel-hump in the candidate. The first camel-hump
/// the candidate in order. The first hump in the pattern did not match the first hump in the candidate /// in the pattern did not match the first camel-hump in the pattern. There was at least one gap in
/// string. There was at least one hump in the candidate that was not matched that was between humps /// the camel-humps in the candidate that were matched.
/// in the candidate that were matched.
/// ///
/// Example: "FS" matching "CodeFixProviderService". Because 'Code' was not matched, the match was not /// Example: "FS" matching "CodeFixProviderService"
/// a 'FromStart' match. Because 'Provider' was not matched, the match was not a 'Contiguous' match. /// Example: "fs" matching "CodeFixProviderService"
/// Example: "FixSer" matching "CodeFixProviderService"
/// </summary> /// </summary>
CamelCase, CamelCaseNonContiguousSubstring,
#endif
/// <summary> /// <summary>
/// The pattern matches the candidate in a fuzzy manner. Fuzzy matching allows for /// The pattern matches the candidate in a fuzzy manner. Fuzzy matching allows for
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册