dsh-neotui 0.1.12 → 0.1.13
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/package.json +1 -1
- package/src/views.js +3 -0
package/package.json
CHANGED
package/src/views.js
CHANGED
|
@@ -3043,6 +3043,9 @@ export class App {
|
|
|
3043
3043
|
// NORMAL is subtle — the user's eyes are at the input line, not the top.
|
|
3044
3044
|
const editing = this.focused === this.chat?.input;
|
|
3045
3045
|
row0.left.push({ t: editing ? " INSERT " : " NORMAL ", fg: editing ? T.OK : T.FAINT, bg: T.STATUSBG, bold: editing });
|
|
3046
|
+
// Ctrl+Space (command panel) earns the prime spot right after the mode
|
|
3047
|
+
// badge — the shortcut every session needs to discover first.
|
|
3048
|
+
row0.left.push({ t: " Ctrl+Space 面板 ", fg: T.DIM, bg: T.STATUSBG });
|
|
3046
3049
|
// Left badge: the session's permission/mode (e.g. "工作区写入/创造模式"),
|
|
3047
3050
|
// which is far more meaningful than a static "工作区" label.
|
|
3048
3051
|
const perm = this.projections.permissions?.currentValue;
|