aegiscode 5.2.22 → 5.2.24
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 +12 -0
- package/bin/cli.js +616 -616
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -235,6 +235,18 @@ Full reference with copy-paste examples: **[aegiscloud.org/aegiscode/commands](h
|
|
|
235
235
|
| `/hooks [status\|list]` | | View configured hooks and their status |
|
|
236
236
|
| `/mcp [tools\|<server-name>]` | | Show connected MCP server status and tools |
|
|
237
237
|
|
|
238
|
+
### Copy, paste & text selection
|
|
239
|
+
|
|
240
|
+
| Action | How |
|
|
241
|
+
|--------|-----|
|
|
242
|
+
| Copy last assistant reply | `Alt+C` or `Ctrl+C` at idle (markdown stripped) |
|
|
243
|
+
| Copy your last message | `Alt+U` |
|
|
244
|
+
| Copy a code block | `/copy [n\|last\|list\|raw]` or `/cp` |
|
|
245
|
+
| Select text with the mouse + copy | `Alt+S` toggles **selection mode** — suspends mouse-wheel tracking and pauses the idle cursor blink (which would otherwise erase your selection every 800 ms) so the terminal's native mark/select + `Ctrl+Shift+C` works, then `Alt+S` again to resume wheel scrolling |
|
|
246
|
+
| Paste into the input | Works via bracketed paste (`Ctrl+Shift+V` / middle-click); a multi-line paste is collapsed to a **first-line + `…`** preview while the full text is kept and submitted |
|
|
247
|
+
|
|
248
|
+
> Note: on VTE-based terminals (gnome-terminal, xfce4-terminal) and Windows Terminal, the app's mouse-wheel tracking disables native mouse selection — use `Alt+S` there. On kitty/iTerm2/wezterm selection works alongside wheel scrolling, so the toggle is rarely needed.
|
|
249
|
+
|
|
238
250
|
---
|
|
239
251
|
|
|
240
252
|
## /router — automatic model routing
|