summaryrefslogtreecommitdiff
path: root/dmenu
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu')
-rw-r--r--dmenu/config.def.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/dmenu/config.def.h b/dmenu/config.def.h
index 5c44fa7..4febf41 100644
--- a/dmenu/config.def.h
+++ b/dmenu/config.def.h
@@ -1,14 +1,8 @@
/* See LICENSE file for copyright and license details. */
-/* Default settings; can be overriden by command line. */
+/* Default settings; can be overriden by command line. */
#define PADDING 0
-/*
- * Characters not considered part of a word while deleting words
- * for example: " /?\"&[]"
- */
-static const char worddelimiters[] = " ";
-
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */
static int dmx = PADDING; /* put dmenu at this x offset */
@@ -18,6 +12,12 @@ static unsigned int dmw = 0; /* make dmenu this wide */
static const char *dynamic = NULL; /* -dy option; dynamic command to run on input change */
static char *prompt = NULL; /* -p option; prompt to the left of input field */
+/*
+ * Characters not considered part of a word while deleting words
+ * for example: " /?\"&[]"
+ */
+static const char worddelimiters[] = " /?\"&[]";
+
/* Size of the window border */
static unsigned int border_width = 0;