@meistrari/remy-cli 1.4.1 → 1.4.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/README.md CHANGED
@@ -58,7 +58,7 @@ Drag to select visible text in any Remy view; Remy copies it to the local clipbo
58
58
  | `/exit` | Leave Remy. |
59
59
  | `Ctrl+O` | Expand or collapse activity details. |
60
60
 
61
- After a session becomes terminal, press `Esc` to return to the dashboard or `n` to start new work. From the dashboard, press `q` to quit. `Shift+L` in the dashboard and `/logout` in a session ask for confirmation; press `y` to sign out or `Esc` to cancel. `Ctrl+C` exits Remy from the dashboard, wizard, or session view.
61
+ After a session becomes terminal, press `Esc` to return to the dashboard or `n` to start new work. From the dashboard, press `q` to quit; in an open session, `q` is ordinary composer text. `Shift+L` in the dashboard and `/logout` in a session ask for confirmation; press `y` to sign out or `Esc` to cancel. `Ctrl+C` exits Remy from the dashboard, wizard, or session view.
62
62
 
63
63
  ## Commands for direct or scripted use
64
64
 
package/dist/remy.js CHANGED
@@ -36498,11 +36498,6 @@ async function createSessionTui({
36498
36498
  finish({ kind: "new", composer: { text: "", attachments: [] } });
36499
36499
  return;
36500
36500
  }
36501
- if (key.name === "q" && (latestState.aggregateStatus !== "open" || composer.plainText.length === 0)) {
36502
- key.preventDefault();
36503
- finish({ kind: "exit" });
36504
- return;
36505
- }
36506
36501
  if (key.name === "o" && key.ctrl) {
36507
36502
  key.preventDefault();
36508
36503
  activityExpanded = !activityExpanded;
@@ -37297,7 +37292,7 @@ var compactMarkRows = 9;
37297
37292
  var compactMinWidth = 48;
37298
37293
  var compactMinHeight = 20;
37299
37294
  var markBrightnessGain = 4.2;
37300
- var remyCliVersion = "1.4.1";
37295
+ var remyCliVersion = "1.4.2";
37301
37296
  async function showRemySplash({
37302
37297
  createRenderer = createRemyRenderer,
37303
37298
  durationMs = splashDurationMs,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/remy-cli",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Remy, the Coding Agent terminal client.",
5
5
  "type": "module",
6
6
  "bin": {