@soleone/pi-tasks 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/extension.ts +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Task management extension for the [pi coding agent](https://github.com/badlogic/
|
|
|
7
7
|
## Quick start
|
|
8
8
|
|
|
9
9
|
1. Installation: `pi install npm:@soleone/pi-tasks`
|
|
10
|
-
2. Toggle the Tasks UI with `ctrl +
|
|
10
|
+
2. Toggle the Tasks UI with `ctrl + shift + r` or `alt + x`, or use `/tasks`.
|
|
11
11
|
|
|
12
12
|
## Usage
|
|
13
13
|
|
package/package.json
CHANGED
package/src/extension.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { showTaskList } from "./ui/pages/list.ts"
|
|
|
6
6
|
import { showTaskForm } from "./ui/pages/show.ts"
|
|
7
7
|
import type { TaskUpdate } from "./backend/api.ts"
|
|
8
8
|
|
|
9
|
-
const TASK_LIST_SHORTCUTS = ["ctrl+
|
|
9
|
+
const TASK_LIST_SHORTCUTS = ["ctrl+shift+r", "alt+x"]
|
|
10
10
|
|
|
11
11
|
function parsePriorityKey(
|
|
12
12
|
data: string,
|