peakypanes 0.0.5 → 0.0.6
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 +12 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -132,6 +132,11 @@ layout:
|
|
|
132
132
|
# - codex-3
|
|
133
133
|
# - codex-4
|
|
134
134
|
# - codex-5
|
|
135
|
+
|
|
136
|
+
# Optional per-project dashboard overrides
|
|
137
|
+
# dashboard:
|
|
138
|
+
# sidebar:
|
|
139
|
+
# hidden: true
|
|
135
140
|
```
|
|
136
141
|
|
|
137
142
|
### Global Config (`~/.config/peakypanes/config.yml`)
|
|
@@ -263,7 +268,8 @@ Keymap overrides are available in the global config (`~/.config/peakypanes/confi
|
|
|
263
268
|
|
|
264
269
|
Project
|
|
265
270
|
- `ctrl+o` open project picker (creates session detached; stay in dashboard)
|
|
266
|
-
- `ctrl+b`
|
|
271
|
+
- `ctrl+b` toggle sidebar (show/hide sessions list)
|
|
272
|
+
- `alt+c` close project (hides from tabs; sessions keep running; press k in the dialog to kill)
|
|
267
273
|
|
|
268
274
|
Session
|
|
269
275
|
- `enter` attach/start session (when reply is empty)
|
|
@@ -298,6 +304,8 @@ dashboard:
|
|
|
298
304
|
preview_compact: true
|
|
299
305
|
idle_seconds: 20
|
|
300
306
|
preview_mode: grid # grid | layout
|
|
307
|
+
sidebar:
|
|
308
|
+
hidden: false
|
|
301
309
|
attach_behavior: current # current | detached
|
|
302
310
|
keymap:
|
|
303
311
|
project_left: ["ctrl+a"]
|
|
@@ -312,6 +320,8 @@ dashboard:
|
|
|
312
320
|
scrollback: ["f7"]
|
|
313
321
|
copy_mode: ["f8"]
|
|
314
322
|
toggle_panes: ["ctrl+u"]
|
|
323
|
+
toggle_sidebar: ["ctrl+b"]
|
|
324
|
+
close_project: ["alt+c"]
|
|
315
325
|
command_palette: ["ctrl+p"]
|
|
316
326
|
help: ["ctrl+g"]
|
|
317
327
|
quit: ["ctrl+c"]
|
|
@@ -381,7 +391,7 @@ Manual npm smoke run (fresh HOME/XDG config):
|
|
|
381
391
|
|
|
382
392
|
```bash
|
|
383
393
|
scripts/fresh-run
|
|
384
|
-
scripts/fresh-run 0.0.
|
|
394
|
+
scripts/fresh-run 0.0.6 --with-project
|
|
385
395
|
```
|
|
386
396
|
|
|
387
397
|
GitHub Actions runs gofmt checks, go vet, go test with coverage, and race on Linux.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peakypanes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Tmux layout manager with YAML based configuration.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/regenrek/peakypanes",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"peakypanes": "bin/peakypanes.js"
|
|
13
13
|
},
|
|
14
14
|
"optionalDependencies": {
|
|
15
|
-
"peakypanes-darwin-x64": "0.0.
|
|
16
|
-
"peakypanes-darwin-arm64": "0.0.
|
|
17
|
-
"peakypanes-linux-x64": "0.0.
|
|
18
|
-
"peakypanes-linux-arm64": "0.0.
|
|
15
|
+
"peakypanes-darwin-x64": "0.0.6",
|
|
16
|
+
"peakypanes-darwin-arm64": "0.0.6",
|
|
17
|
+
"peakypanes-linux-x64": "0.0.6",
|
|
18
|
+
"peakypanes-linux-arm64": "0.0.6"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|