diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-06-12 00:53:30 +0200 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-06-12 00:53:30 +0200 |
commit | c6a3dddb74cd4572390d11eb153833e21a3443eb (patch) | |
tree | bee1188f899c76f79aab500ebebd93756ca3689b /config.h | |
parent | Added mouse support patch [Patch] (diff) | |
download | dmenu-c6a3dddb74cd4572390d11eb153833e21a3443eb.tar.gz dmenu-c6a3dddb74cd4572390d11eb153833e21a3443eb.tar.bz2 dmenu-c6a3dddb74cd4572390d11eb153833e21a3443eb.zip |
Added tab complete [Patch]
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 5 |
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; |