From: Michael D. Lowis Date: Fri, 16 Jun 2017 00:53:50 +0000 (-0400) Subject: Updated double click time to 250ms X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=57e7b46ece76dbdd4b8587dcd051c8a60f79a67b;p=projs%2Ftide.git Updated double click time to 250ms --- diff --git a/TODO.md b/TODO.md index c358c3a..204268b 100644 --- a/TODO.md +++ b/TODO.md @@ -4,7 +4,6 @@ Up Next: * add a cap to the distance from last span to first char on screen * Ctrl+/ shortcut to comment/uncomment based on syntax -* Update click time to 500ms * ignore the menu key or map it to control * clicking or dragging the mouse out of bounds should still update the selection * implement transaction control in buf.c diff --git a/config.h b/config.h index aa3450b..e801e37 100644 --- a/config.h +++ b/config.h @@ -31,7 +31,7 @@ enum { DefaultCharset = UTF_8, /* We assume UTF-8 because nothing else matters */ FontCacheSize = 16, /* Maximum number of fonts allowed in the font cache */ LineSpacing = LNSPACE, /* Set the vertical spacing between lines */ - DblClickTime = 250, /* Millisecond time for detecting double clicks */ + DblClickTime = 500, /* Millisecond time for detecting double clicks */ RulePosition = 80, /* Column in which the vertical ruler appears */ CopyIndent = 1, /* New lines will inherit the indent of the preceding line */ LineNumbers = 1, /* Enable line numbers by default or not */