@firstpick/pi-extension-bang-command-autocomplete 0.1.5 → 0.1.7

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 CHANGED
@@ -48,3 +48,23 @@ pi install npm:@firstpick/pi-extension-bang-command-autocomplete
48
48
  ## Tools
49
49
 
50
50
  None.
51
+
52
+ ## Example view
53
+
54
+ ```text
55
+ You type: !gi
56
+
57
+ Suggestions
58
+ !git common command
59
+ !git status learned full line
60
+ !git commit learned command + flag
61
+
62
+ You type: !git -
63
+
64
+ Suggestions
65
+ -m learned for git
66
+ --amend learned for git
67
+ --stat learned for git
68
+ ```
69
+
70
+ This makes repeat shell commands feel lightweight: type `!`, pick the command or learned full line, and keep moving.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firstpick/pi-extension-bang-command-autocomplete",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Autocomplete for !<command> in Pi, with optional shell-history indexing.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -19,6 +19,7 @@
19
19
  },
20
20
  "files": [
21
21
  "index.ts",
22
+ "images",
22
23
  "README.md",
23
24
  "LICENSE"
24
25
  ],