summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2015-07-01 09:19:03 +0200
committerDave Davenport <qball@gmpclient.org>2015-07-01 09:19:03 +0200
commitd79e5aa0e2936723da76af394ea7c54dfc3c637d (patch)
tree8fe909085d5c4863a1f2bc9fc6095d8050e35af8 /config
parent98b8e583cbd670afe8d69066209ce2c432e41053 (diff)
Set fuzzy default to false (instead of unset)
Diffstat (limited to 'config')
-rw-r--r--config/config.def.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/config.def.c b/config/config.def.c
index 5ff37ea0..47e63a3c 100644
--- a/config/config.def.c
+++ b/config/config.def.c
@@ -127,6 +127,8 @@ Settings config = {
/** Parse /etc/hosts file in ssh view. */
.parse_hosts = FALSE,
/** Modi to combine into one view. */
- .combi_modi = "window,run"
+ .combi_modi = "window,run",
+ /** Fuzzy matching. */
+ .fuzzy = FALSE,
};