diff options
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 482901e..9ce45a7 100644 --- a/config.def.h +++ b/config.def.h @@ -28,11 +28,12 @@ static float cwscale = 1.0;  static float chscale = 1.0;  /* - * word delimiter string + * all space and punctuation characters are considered word delimiters, unless + * listed here.   * - * More advanced example: L" `'\"()[]{}" + * More advanced example: L"#$%&+,-./:=?_~"   */ -wchar_t *worddelimiters = L" "; +wchar_t *extrawordchars = L"./:";  /* selection timeouts (in milliseconds) */  static unsigned int doubleclicktimeout = 300;  | 
