@dealdeploy/skl 0.1.8 → 0.2.0
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/bun.lock +1 -0
- package/index.ts +7 -1
- package/package.json +1 -1
- package/.claude/settings.local.json +0 -11
package/bun.lock
CHANGED
package/index.ts
CHANGED
|
@@ -535,7 +535,7 @@ const footerSep = new TextRenderable(renderer, {
|
|
|
535
535
|
|
|
536
536
|
const footer = new TextRenderable(renderer, {
|
|
537
537
|
id: "footer",
|
|
538
|
-
content: " ↑↓ move ←→/tab col enter toggle ^a all ^e edit ^d del / search esc quit",
|
|
538
|
+
content: " ↑↓ move ←→/tab col enter toggle ^a all ^e edit ^d del / search q/esc quit",
|
|
539
539
|
fg: C.footer,
|
|
540
540
|
height: 1,
|
|
541
541
|
});
|
|
@@ -908,6 +908,12 @@ renderer.keyInput.on("keypress", (key: KeyEvent) => {
|
|
|
908
908
|
return;
|
|
909
909
|
}
|
|
910
910
|
|
|
911
|
+
// ── "q" to quit ──
|
|
912
|
+
if (key.sequence === "q") {
|
|
913
|
+
renderer.destroy();
|
|
914
|
+
process.exit(0);
|
|
915
|
+
}
|
|
916
|
+
|
|
911
917
|
// ── "/" to focus search (vim-style) ──
|
|
912
918
|
if (key.sequence === "/") {
|
|
913
919
|
focusArea = "search";
|
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"permissions": {
|
|
3
|
-
"allow": [
|
|
4
|
-
"Bash(git add:*)",
|
|
5
|
-
"Bash(comm -23 /tmp/local_claude.txt /tmp/global_claude.txt)",
|
|
6
|
-
"Bash(comm -13 /tmp/local_claude.txt /tmp/global_claude.txt)",
|
|
7
|
-
"Bash(comm -12 /tmp/local_claude.txt /tmp/global_claude.txt)",
|
|
8
|
-
"Bash(/usr/bin/ls:*)"
|
|
9
|
-
]
|
|
10
|
-
}
|
|
11
|
-
}
|