auq-mcp-server 3.2.10 → 3.2.11
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/package.json +1 -1
- package/dist/src/tui-opentui/app.js +5 -5
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -326,6 +326,11 @@ function AppInner({ config }) {
|
|
|
326
326
|
setShowSessionPicker(true);
|
|
327
327
|
return;
|
|
328
328
|
}
|
|
329
|
+
// Ctrl+T: cycle theme
|
|
330
|
+
if (key.ctrl && (key.name === "t" || key.sequence === "\x14")) {
|
|
331
|
+
cycleTheme();
|
|
332
|
+
return;
|
|
333
|
+
}
|
|
329
334
|
if (!key.ctrl && !key.meta) {
|
|
330
335
|
const seq = key.sequence || key.name || "";
|
|
331
336
|
// Session navigation: ] and [
|
|
@@ -350,11 +355,6 @@ function AppInner({ config }) {
|
|
|
350
355
|
setShowUpdateOverlay(true);
|
|
351
356
|
return;
|
|
352
357
|
}
|
|
353
|
-
// t: cycle theme
|
|
354
|
-
if (seq === "t") {
|
|
355
|
-
cycleTheme();
|
|
356
|
-
return;
|
|
357
|
-
}
|
|
358
358
|
}
|
|
359
359
|
});
|
|
360
360
|
// Ctrl+S outside isNavActive (fewer conditions)
|