summaryrefslogtreecommitdiffstats
path: root/resources/default-conf.hjson
diff options
context:
space:
mode:
Diffstat (limited to 'resources/default-conf.hjson')
-rw-r--r--resources/default-conf.hjson18
1 files changed, 9 insertions, 9 deletions
diff --git a/resources/default-conf.hjson b/resources/default-conf.hjson
index 4ac3bb1..47202eb 100644
--- a/resources/default-conf.hjson
+++ b/resources/default-conf.hjson
@@ -107,27 +107,27 @@
#
# broot allows many search modes.
# A search mode is defined by
- # - the way to search: fuzzy, exact, or a regular expression.
- # - where to search: name, sub-path, or file content
- # A search pattern may for example be "fuzzy name" (default),
+ # - the way to search: 'fuzzy', 'exact', 'regex', or 'tokens'.
+ # - where to search: file 'name', 'path', or file 'content'
+ # A search pattern may for example be "fuzzy path" (default),
# "regex content" or "exact path".
#
# The search mode is selected from its prefix. For example, if
- # you type "abc", the default mode is "fuzzy name". If you type
- # "/abc", the mode is "regex name". If you type "rp/abc", the mode
- # is "regex path".
+ # you type "abc", the default mode is "fuzzy path". If you type
+ # "/abc", the mode is "regex path". If you type "rn/abc", the mode
+ # is "regex name".
#
# This mapping may be modified. You may want to dedicate the
# empty prefix (the one which doesn't need a '/') to the
# search mode you use most often. The example below makes it
- # easy to search on subpath rather than on the name.
+ # easy to search on name rather than on the subpath.
#
# More information on
# https://dystroy.org/broot/input/#the-filtering-pattern
#
# search_modes: {
- # <empty>: fuzzy path
- # /: regex path
+ # <empty>: fuzzy name
+ # /: regex name
# }
###############################################################