@@ -33,7 +33,7 @@ public class Settings
3333
3434 public string IndexSearchActionKeyword { get ; set ; } = Query . GlobalPluginWildcardSign ;
3535
36- public bool IndexOnlySearchKeywordEnabled { get ; set ; }
36+ public bool IndexSearchKeywordEnabled { get ; set ; }
3737
3838 public bool WarnWindowsSearchServiceOff { get ; set ; } = true ;
3939
@@ -67,7 +67,7 @@ internal enum ActionKeyword
6767 {
6868 ActionKeyword . SearchActionKeyword => SearchActionKeywordEnabled ,
6969 ActionKeyword . PathSearchActionKeyword => PathSearchKeywordEnabled ,
70- ActionKeyword . IndexSearchActionKeyword => IndexOnlySearchKeywordEnabled ,
70+ ActionKeyword . IndexSearchActionKeyword => IndexSearchKeywordEnabled ,
7171 ActionKeyword . FileContentSearchActionKeyword => FileContentSearchKeywordEnabled ,
7272 _ => throw new ArgumentOutOfRangeException ( nameof ( actionKeyword ) , actionKeyword , "ActionKeyword enabled status not defined" )
7373 } ;
@@ -76,7 +76,7 @@ internal enum ActionKeyword
7676 {
7777 ActionKeyword . SearchActionKeyword => SearchActionKeywordEnabled = enable ,
7878 ActionKeyword . PathSearchActionKeyword => PathSearchKeywordEnabled = enable ,
79- ActionKeyword . IndexSearchActionKeyword => IndexOnlySearchKeywordEnabled = enable ,
79+ ActionKeyword . IndexSearchActionKeyword => IndexSearchKeywordEnabled = enable ,
8080 ActionKeyword . FileContentSearchActionKeyword => FileContentSearchKeywordEnabled = enable ,
8181 _ => throw new ArgumentOutOfRangeException ( nameof ( actionKeyword ) , actionKeyword , "ActionKeyword enabled status not defined" )
8282 } ;
0 commit comments