diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/aerc.conf | 7 | ||||
-rw-r--r-- | config/config.go | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/config/aerc.conf b/config/aerc.conf index a7628e39..fbbf5877 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -124,9 +124,10 @@ stylesets-dirs= # Default: default styleset-name=default -# Activates fuzzy search for IMAP folders: the typed string is search in the -# folder tree in any position, not necessarily at the beginning. -#fuzzy-folder-complete=false +# Activates fuzzy search in commands and their arguments: the typed string is +# searched in the command or option in any position, and need not be +# consecutive characters in the command or option. +#fuzzy-complete=false #[ui:account=foo] # diff --git a/config/config.go b/config/config.go index 3fecb360..8a01f503 100644 --- a/config/config.go +++ b/config/config.go @@ -44,7 +44,7 @@ type UIConfig struct { EmptyDirlist string `ini:"empty-dirlist"` MouseEnabled bool `ini:"mouse-enabled"` ThreadingEnabled bool `ini:"threading-enabled"` - FuzzyFolderComplete bool `ini:"fuzzy-folder-complete"` + FuzzyComplete bool `ini:"fuzzy-complete"` NewMessageBell bool `ini:"new-message-bell"` Spinner string `ini:"spinner"` SpinnerDelimiter string `ini:"spinner-delimiter"` @@ -622,7 +622,7 @@ func LoadConfigFromFile(root *string, logger *log.Logger) (*AercConfig, error) { EmptyDirlist: "(no folders)", MouseEnabled: false, NewMessageBell: true, - FuzzyFolderComplete: false, + FuzzyComplete: false, Spinner: "[..] , [..] , [..] , [..] , [..], [..] , [..] , [..] ", SpinnerDelimiter: ",", DirListFormat: "%n %>r", |