@joule-sh/code-linux-x64 0.21.0 → 0.23.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/README.md +26 -7
- package/bin/joule +0 -0
- package/bin/joule-daemon +0 -0
- package/bin/relay +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -141,12 +141,31 @@ directory. Model, mode and workspace are not part of what gets saved - they
|
|
|
141
141
|
are re-resolved fresh from the normal config chain on every launch. There is
|
|
142
142
|
no picker for older sessions yet, only the most recent one.
|
|
143
143
|
|
|
144
|
-
The terminal
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
144
|
+
The terminal does its own mouse selection, so the wheel and drag-to-select
|
|
145
|
+
both work at once rather than trading against each other. The wheel scrolls
|
|
146
|
+
the transcript, PageUp/PageDown scroll it too, and dragging over the
|
|
147
|
+
transcript selects the rows the drag covers - drawn in reverse video, with the
|
|
148
|
+
status line saying how many lines are held. The wheel keeps scrolling while a
|
|
149
|
+
drag is in progress: the selection stays on the text it was drawn over rather
|
|
150
|
+
than on the screen rows.
|
|
151
|
+
|
|
152
|
+
Releasing copies, over OSC 52 (`ESC ] 52 ; c ; <base64> BEL`), which is the
|
|
153
|
+
mechanism that survives ssh. Not every terminal accepts it, and one that
|
|
154
|
+
refuses sends no reply, so there is nothing to detect and nothing to retry.
|
|
155
|
+
Joule says what it wrote and names the way out rather than reporting a copy it
|
|
156
|
+
cannot confirm: `copied 3 lines - Esc clears - /mouse off if nothing pasted`.
|
|
157
|
+
Escape clears the selection, typing puts the status line back, and the next
|
|
158
|
+
click starts a new one.
|
|
159
|
+
|
|
160
|
+
A click that does not move copies nothing, the way it behaves in an editor.
|
|
161
|
+
Sign-in codes are never selectable: the row map covers transcript rows only,
|
|
162
|
+
and no selection can start, extend or copy while the input line is capturing.
|
|
163
|
+
|
|
164
|
+
`/mouse off` hands selection back to your terminal's own, for anyone who
|
|
165
|
+
prefers it or whose terminal blocks OSC 52; the button events are then ignored
|
|
166
|
+
outright. It writes `"mouse": "off"` into `~/.config/joule-code/config.json`,
|
|
167
|
+
`/mouse on` puts it back, and `JOULE_CODE_MOUSE` overrides the file for a
|
|
168
|
+
single run.
|
|
169
|
+
|
|
151
170
|
Copying from a collapsed tool-output group only copies what is visible; the
|
|
152
171
|
rows hidden by the collapse are not part of the selection.
|
package/bin/joule
CHANGED
|
Binary file
|
package/bin/joule-daemon
CHANGED
|
Binary file
|
package/bin/relay
CHANGED
|
Binary file
|