2020-08-25 22:06:51 +00:00
|
|
|
|
using Flow.Launcher.Plugin.Explorer.Search;
|
|
|
|
|
|
using Flow.Launcher.Plugin.Explorer.Search.FolderLinks;
|
2020-05-11 13:15:15 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Flow.Launcher.Plugin.Explorer
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Settings
|
|
|
|
|
|
{
|
2020-05-24 22:14:21 +00:00
|
|
|
|
public int MaxResult { get; set; } = 100;
|
|
|
|
|
|
|
2020-06-06 12:13:22 +00:00
|
|
|
|
public List<FolderLink> QuickFolderAccessLinks { get; set; } = new List<FolderLink>();
|
2020-06-02 10:12:14 +00:00
|
|
|
|
|
|
|
|
|
|
public bool UseWindowsIndexForDirectorySearch { get; set; } = true;
|
|
|
|
|
|
|
2020-06-06 12:13:22 +00:00
|
|
|
|
public List<FolderLink> IndexSearchExcludedSubdirectoryPaths { get; set; } = new List<FolderLink>();
|
2020-07-14 19:50:48 +00:00
|
|
|
|
|
|
|
|
|
|
public string SearchActionKeyword { get; set; } = Query.GlobalPluginWildcardSign;
|
|
|
|
|
|
|
2020-08-25 22:06:51 +00:00
|
|
|
|
public string FileContentSearchActionKeyword { get; set; } = Constants.DefaultContentSearchActionKeyword;
|
2020-05-11 13:15:15 +00:00
|
|
|
|
}
|
2020-06-06 12:13:22 +00:00
|
|
|
|
}
|