1. Rename
2. Fix progress bar: progress bar should not be loaded when only white
spaces typed
This commit is contained in:
bao-qian
2015-11-05 20:44:14 +00:00
parent a07d6aa1e7
commit 99d9d14d3b
8 changed files with 60 additions and 54 deletions

View File

@@ -25,13 +25,19 @@ namespace Wox.Plugin
/// </summary>
internal string[] Terms { private get; set; }
/// <summary>
/// Query can be splited into multiple terms by whitespace
/// </summary>
public const string TermSeperater = " ";
/// <summary>
/// User can set multiple action keywords seperated by ';'
/// </summary>
public const string ActionKeywordSeperater = ";";
/// <summary>
/// * is used for System Plugin
/// '*' is used for System Plugin
/// </summary>
public const string WildcardSign = "*";
public const string GlobalPluginWildcardSign = "*";
public string ActionKeyword { get; set; }