You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,6 @@
43
43
|`path`|`string`||`"task"`| Path to the Task binary. Can also the name of a binary in your `$PATH`. If Task is installed via Snap, set this to `/snap/task/current/task`. |
44
44
|`outputTo`|`string`|`"output"`, `"terminal"`|`"output"`| Where to print the output of tasks. Note that the output panel does not support ANSI colors. |
45
45
|`checkForUpdates`|`boolean`||`true`| Check if there is a newer version of Task on startup. |
46
-
|`doubleClickTimeout`|`number`||`500`| Time in milliseconds to consider a double-click. A value of 0 will disable double-clicking. |
46
+
|`doubleClickTimeout`|`number`||`0`| Time in milliseconds to consider a double-click. 0 disables double-click to run. 500 is a good starting point if you want to enable it.|
47
47
|`tree.nesting`|`boolean`||`true`| Whether to nest tasks by their namespace in the tree view. |
48
48
|`tree.sort`|`sort`|`default`, `alphanumeric`, `none`|`"default"`| The order in which to display tasks in the tree view. |
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -302,8 +302,8 @@
302
302
},
303
303
"doubleClickTimeout": {
304
304
"type": "number",
305
-
"default": 500,
306
-
"description": "The double-click timeout for a task in the tree view. To disable double-click to run, set this to 0."
305
+
"default": 0,
306
+
"description": "The double-click timeout for a task in the tree view. 0 disables double-click to run. 500 is a good starting point if you want to enable it."
0 commit comments