@@ -21,7 +21,7 @@ public class Settings
2121 public List < AccessLink > IndexSearchExcludedSubdirectoryPaths { get ; set ; } = new List < AccessLink > ( ) ;
2222
2323 public string SearchActionKeyword { get ; set ; } = Query . GlobalPluginWildcardSign ;
24- public bool EnableSearchActionKeyword { get ; set ; } = true ;
24+ public bool EnabledSearchActionKeyword { get ; set ; } = true ;
2525
2626 public string FileContentSearchActionKeyword { get ; set ; } = Constants . DefaultContentSearchActionKeyword ;
2727
@@ -60,15 +60,15 @@ internal enum ActionKeyword
6060
6161 internal bool ? GetActionKeywordEnable ( ActionKeyword actionKeyword ) => actionKeyword switch
6262 {
63- ActionKeyword . SearchActionKeyword => EnableSearchActionKeyword ,
63+ ActionKeyword . SearchActionKeyword => EnabledSearchActionKeyword ,
6464 ActionKeyword . PathSearchActionKeyword => EnabledPathSearchKeyword ,
6565 ActionKeyword . IndexSearchActionKeyword => EnabledIndexOnlySearchKeyword ,
6666 _ => null
6767 } ;
6868
6969 internal void SetActionKeywordEnable ( ActionKeyword actionKeyword , bool enable ) => _ = actionKeyword switch
7070 {
71- ActionKeyword . SearchActionKeyword => EnableSearchActionKeyword = enable ,
71+ ActionKeyword . SearchActionKeyword => EnabledSearchActionKeyword = enable ,
7272 ActionKeyword . PathSearchActionKeyword => EnabledPathSearchKeyword = enable ,
7373 ActionKeyword . IndexSearchActionKeyword => EnabledIndexOnlySearchKeyword = enable ,
7474 _ => throw new ArgumentOutOfRangeException ( nameof ( actionKeyword ) , actionKeyword , "Unexpected property" )
0 commit comments