@lnittman/pi-interview 0.5.1 → 0.5.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.
- package/dist/ui/interview-ui.js +2 -2
- package/package.json +1 -1
package/dist/ui/interview-ui.js
CHANGED
|
@@ -116,7 +116,7 @@ export async function showInterviewUI(ctx, questions, config) {
|
|
|
116
116
|
return;
|
|
117
117
|
}
|
|
118
118
|
// ── 'n' key: toggle notes ──
|
|
119
|
-
if (data === "
|
|
119
|
+
if (data === "i") {
|
|
120
120
|
noteMode = true;
|
|
121
121
|
noteText = notes.get(q().id) || "";
|
|
122
122
|
refresh();
|
|
@@ -265,7 +265,7 @@ export async function showInterviewUI(ctx, questions, config) {
|
|
|
265
265
|
// Help bar
|
|
266
266
|
blank();
|
|
267
267
|
if (!noteMode) {
|
|
268
|
-
const hints = ["up/dn", "Space toggle", "Enter confirm", "
|
|
268
|
+
const hints = ["up/dn", "Space toggle", "Enter confirm", "i note"];
|
|
269
269
|
if (questions.length > 1)
|
|
270
270
|
hints.push("Tab next");
|
|
271
271
|
hints.push("Esc dismiss");
|
package/package.json
CHANGED