@mariozechner/pi-coding-agent 0.7.8 → 0.7.9
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/CHANGELOG.md +11 -0
- package/README.md +5 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.7.9] - 2025-11-14
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Editor: updated keyboard shortcuts to follow Unix conventions:
|
|
10
|
+
- **Ctrl+W** deletes the previous word (stopping at whitespace or punctuation)
|
|
11
|
+
- **Ctrl+U** deletes from cursor to start of line (at line start, merges with previous line)
|
|
12
|
+
- **Ctrl+K** deletes from cursor to end of line (at line end, merges with next line)
|
|
13
|
+
- **Option+Backspace** in Ghostty now behaves like **Ctrl+W** (delete word backwards)
|
|
14
|
+
- **Cmd+Backspace** in Ghostty now behaves like **Ctrl+U** (delete to start of line)
|
|
15
|
+
|
|
5
16
|
## [0.7.8] - 2025-11-13
|
|
6
17
|
|
|
7
18
|
### Changed
|
package/README.md
CHANGED
|
@@ -131,7 +131,11 @@ Paste multiple lines of text (e.g., code snippets, logs) and they'll be automati
|
|
|
131
131
|
|
|
132
132
|
### Keyboard Shortcuts
|
|
133
133
|
|
|
134
|
-
- **Ctrl+
|
|
134
|
+
- **Ctrl+W**: Delete word backwards (stops at whitespace or punctuation)
|
|
135
|
+
- **Option+Backspace** (Ghostty): Delete word backwards (same as Ctrl+W)
|
|
136
|
+
- **Ctrl+U**: Delete to start of line (at line start: merge with previous line)
|
|
137
|
+
- **Cmd+Backspace** (Ghostty): Delete to start of line (same as Ctrl+U)
|
|
138
|
+
- **Ctrl+K**: Delete to end of line (at line end: merge with next line)
|
|
135
139
|
- **Ctrl+C**: Clear editor (first press) / Exit pi (second press)
|
|
136
140
|
- **Tab**: Path completion
|
|
137
141
|
- **Enter**: Send message
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mariozechner/pi-coding-agent",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.9",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"prepublishOnly": "npm run clean && npm run build"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@mariozechner/pi-agent": "^0.7.
|
|
25
|
-
"@mariozechner/pi-ai": "^0.7.
|
|
24
|
+
"@mariozechner/pi-agent": "^0.7.9",
|
|
25
|
+
"@mariozechner/pi-ai": "^0.7.9",
|
|
26
26
|
"chalk": "^5.5.0",
|
|
27
27
|
"diff": "^8.0.2",
|
|
28
28
|
"glob": "^11.0.3"
|