@@ -33,7 +33,7 @@ public class Settings
33
33
34
34
public string IndexSearchActionKeyword { get ; set ; } = Query . GlobalPluginWildcardSign ;
35
35
36
- public bool IndexOnlySearchKeywordEnabled { get ; set ; }
36
+ public bool IndexSearchKeywordEnabled { get ; set ; }
37
37
38
38
public bool WarnWindowsSearchServiceOff { get ; set ; } = true ;
39
39
@@ -67,7 +67,7 @@ internal enum ActionKeyword
67
67
{
68
68
ActionKeyword . SearchActionKeyword => SearchActionKeywordEnabled ,
69
69
ActionKeyword . PathSearchActionKeyword => PathSearchKeywordEnabled ,
70
- ActionKeyword . IndexSearchActionKeyword => IndexOnlySearchKeywordEnabled ,
70
+ ActionKeyword . IndexSearchActionKeyword => IndexSearchKeywordEnabled ,
71
71
ActionKeyword . FileContentSearchActionKeyword => FileContentSearchKeywordEnabled ,
72
72
_ => throw new ArgumentOutOfRangeException ( nameof ( actionKeyword ) , actionKeyword , "ActionKeyword enabled status not defined" )
73
73
} ;
@@ -76,7 +76,7 @@ internal enum ActionKeyword
76
76
{
77
77
ActionKeyword . SearchActionKeyword => SearchActionKeywordEnabled = enable ,
78
78
ActionKeyword . PathSearchActionKeyword => PathSearchKeywordEnabled = enable ,
79
- ActionKeyword . IndexSearchActionKeyword => IndexOnlySearchKeywordEnabled = enable ,
79
+ ActionKeyword . IndexSearchActionKeyword => IndexSearchKeywordEnabled = enable ,
80
80
ActionKeyword . FileContentSearchActionKeyword => FileContentSearchKeywordEnabled = enable ,
81
81
_ => throw new ArgumentOutOfRangeException ( nameof ( actionKeyword ) , actionKeyword , "ActionKeyword enabled status not defined" )
82
82
} ;
0 commit comments