about summary refs log tree commit diff
path: root/config.h
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-12 00:53:30 +0200
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-06-12 00:53:30 +0200
commitc6a3dddb74cd4572390d11eb153833e21a3443eb (patch)
treebee1188f899c76f79aab500ebebd93756ca3689b /config.h
parentAdded mouse support patch [Patch] (diff)
downloaddmenu-c6a3dddb74cd4572390d11eb153833e21a3443eb.tar.gz
dmenu-c6a3dddb74cd4572390d11eb153833e21a3443eb.tar.bz2
dmenu-c6a3dddb74cd4572390d11eb153833e21a3443eb.zip
Added tab complete [Patch]
Diffstat (limited to 'config.h')
-rw-r--r--config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.h b/config.h
index 317fa2f..7d45da2 100644
--- a/config.h
+++ b/config.h
@@ -22,3 +22,8 @@ static unsigned int lineheight = 0;         /* -h option; minimum height of a me
  * for example: " /?\"&[]"
  */
 static const char worddelimiters[] = " ";
+
+/*
+ * Use prefix matching by default; can be inverted with the -x flag.
+ */
+static int use_prefix = 1;