summaryrefslogtreecommitdiffstats
path: root/docs/configuration/joshuto.toml.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/configuration/joshuto.toml.md')
-rw-r--r--docs/configuration/joshuto.toml.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/configuration/joshuto.toml.md b/docs/configuration/joshuto.toml.md
index 1e0ed5c..e9bf8f2 100644
--- a/docs/configuration/joshuto.toml.md
+++ b/docs/configuration/joshuto.toml.md
@@ -85,6 +85,23 @@ directories_first = true
# sort in reverse
reverse = false
+# Configurations related to searching and selecting files
+[search]
+# Different case sensitivities for operations using substring matching
+# - insensitive
+# - sensitive
+# - smart: when the pattern contains at least one uppercase letter, joshuto can search
+# files case-sensitively, otherwise it will ignore the difference between lowercase
+# and uppercase
+# Note that to apply changes after changing configurations at runtime, re-executing
+# the search command is required.
+# For substring matching
+string_case_sensitivity = "insensitive"
+# For glob matching
+glob_case_sensitivity = "sensitive"
+# For matching with fzf
+fzf_case_sensitivity = "insensitive"
+
# Optional list of command aliases (empty by default)
[cmd_aliases]
# q = "quit"