diff options
Diffstat (limited to 'doc/config')
-rw-r--r-- | doc/config | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -249,8 +249,14 @@ # facilitate the creation of custom modes. # history-file = /path/to/histfile - # Use fuzzy matching for searches. - fuzzy-match = false + # Select the matching algorithm used. If normal, substring matching is + # used, weighted to favour matches closer to the beginning of the + # string. If prefix, only substrings at the beginning of the string are + # matched. If fuzzy, searching is performed via a simple fuzzy matching + # algorithm. + # + # Supported values: normal, prefix, fuzzy + matching-algorithm = normal # If true, require a match to allow a selection to be made. If false, # making a selection with no matches will print input to stdout. |