Skip to content

Commit 6299c7a

Browse files
committed
chore: changelog and README for #129
1 parent c411c01 commit 6299c7a

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
@joerocklin).
1313
- Run last command now remembers `.CLI_ARGS` and works when output is set to the
1414
terminal (#168 by @kema-dev and @pd93).
15+
- Added support for double-clicking tasks from the tree view to run them (#127,
16+
#129 by @pd93).
17+
- Configurable via `task.doubleClickTimeout` setting measured in milliseconds.
18+
- Defaults to `500`.
19+
- `0` will disable double-click.
1520

1621
## v0.3.2 - 2023-11-20
1722

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@
3737

3838
## Configuration
3939

40-
| Setting | Type | Allowed Values | Default | Description |
41-
| ----------------- | --------- | --------------------------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
42-
| `updateOn` | `string` | `"manual"`, `"save"` | `"save"` | When the list of tasks should be updated. |
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-
| `outputTo` | `string` | `"output"`, `"terminal"` | `"output"` | Where to print the output of tasks. Note that the output panel does not support ANSI colors. |
45-
| `checkForUpdates` | `boolean` | | `true` | Check if there is a newer version of Task on startup. |
46-
| `tree.nesting` | `boolean` | | `true` | Whether to nest tasks by their namespace in the tree view. |
47-
| `tree.sort` | `sort` | `default`, `alphanumeric`, `none` | `"default"` | The order in which to display tasks in the tree view. |
40+
| Setting | Type | Allowed Values | Default | Description |
41+
| -------------------- | --------- | --------------------------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
42+
| `updateOn` | `string` | `"manual"`, `"save"` | `"save"` | When the list of tasks should be updated. |
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+
| `outputTo` | `string` | `"output"`, `"terminal"` | `"output"` | Where to print the output of tasks. Note that the output panel does not support ANSI colors. |
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. |
47+
| `tree.nesting` | `boolean` | | `true` | Whether to nest tasks by their namespace in the tree view. |
48+
| `tree.sort` | `sort` | `default`, `alphanumeric`, `none` | `"default"` | The order in which to display tasks in the tree view. |

0 commit comments

Comments
 (0)