aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2013-05-04 19:04:20 +0200
committerChristoph Lohmann <20h@r-36.net>2013-05-04 19:04:20 +0200
commit8e968739c3cfc4e9f7088a9ea360bc4f37e9ad9f (patch)
tree216f0beee22b1d7a3703537a8f98cf90e52c22ae /config.def.h
parent0c2b513d01697aea20bb4a2a144b55e72c625e86 (diff)
downloadst-8e968739c3cfc4e9f7088a9ea360bc4f37e9ad9f.tar.gz
st-8e968739c3cfc4e9f7088a9ea360bc4f37e9ad9f.zip
Allow more complex delimiters for word selections.
Thanks Alexander Rezinsky <alexrez@gmail.com>!
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index d9a0568..2d854a0 100644
--- a/config.def.h
+++ b/config.def.h
@@ -9,7 +9,14 @@ static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=fals
9static int borderpx = 2; 9static int borderpx = 2;
10static char shell[] = "/bin/sh"; 10static char shell[] = "/bin/sh";
11 11
12/* timeouts (in milliseconds) */ 12/*
13 * word delimiter string
14 *
15 * More advanced example: " `'\"()[]{}"
16 */
17static char worddelimiters[] = " ";
18
19/* selection timeouts (in milliseconds) */
13static unsigned int doubleclicktimeout = 300; 20static unsigned int doubleclicktimeout = 300;
14static unsigned int tripleclicktimeout = 600; 21static unsigned int tripleclicktimeout = 600;
15 22