pi-input-history 1.1.0 → 1.1.2

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.
@@ -7,12 +7,14 @@ on:
7
7
  jobs:
8
8
  publish:
9
9
  runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: read
12
+ id-token: write
10
13
  steps:
11
- - uses: actions/checkout@v4
12
- - uses: actions/setup-node@v4
14
+ - uses: actions/checkout@v6
15
+ - uses: actions/setup-node@v6
13
16
  with:
14
- node-version: 20
17
+ node-version: 24
15
18
  registry-url: https://registry.npmjs.org
19
+ package-manager-cache: false
16
20
  - run: npm publish --access public
17
- env:
18
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/index.ts CHANGED
@@ -100,7 +100,7 @@ export default function (pi: ExtensionAPI) {
100
100
  ctx.ui.setEditorComponent((tui, theme, keybindings) => {
101
101
  const editor =
102
102
  prevComponentFactory?.(tui, theme, keybindings) ??
103
- new CustomEditor(tui, theme, keybindings);
103
+ new CustomEditor(tui, theme, keybindings, { embedWorkingStatus: true });
104
104
 
105
105
  for (let i = items.length - 1; i >= 0; i--) {
106
106
  editor.addToHistory?.(items[i]!);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-input-history",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Cross-session prompt history and fuzzy reverse search for pi.",
5
5
  "keywords": [
6
6
  "pi",