diff --git a/searchmatch.h b/searchmatch.h index d646eefb6..14b1224b1 100644 --- a/searchmatch.h +++ b/searchmatch.h @@ -41,7 +41,15 @@ class PLASMA_EXPORT SearchMatch enum Type { PossibleMatch = 0 /**< Something that may match the query */, InformationalMatch = 50 /**< A purely informational, non-actionable match, such as the answer to a question or calculation*/, - ExactMatch = 100 /**< An exact matcht to the query */}; + HelperMatch = 70 /**< A match that represents an action not directly related + to activating the given search term, such as a search + in an external tool or a command learning trigger. Helper + matches tend to be generic to the query and should not + be autoactivated just because the user hits "Enter" + while typing. They must be explicitly selected to + be activated, but unlike InformationalMatch cause + an action to be triggered. */, + ExactMatch = 100 /**< An exact match to the query */}; /** * Constructs a PossibleMatch associated with a given SearchContext