ssh-x-term 1.0.3 → 1.0.4
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 +35 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,15 +21,23 @@ Cross-platform features include support for passh (Unix), plink.exe (Windows), a
|
|
|
21
21
|
|
|
22
22
|
## Features
|
|
23
23
|
|
|
24
|
-
-
|
|
24
|
+
- **Integrated SSH Terminal**: Fully functional terminal emulator within Bubble Tea
|
|
25
|
+
- VT100/ANSI escape sequence support for proper terminal rendering
|
|
26
|
+
- Scrollback buffer (10,000 lines) with keyboard and mouse scrolling
|
|
27
|
+
- Text selection with mouse (click and drag)
|
|
28
|
+
- Copy to clipboard support (Ctrl+C or automatic on selection)
|
|
29
|
+
- Full keyboard support (arrow keys, home, end, function keys, etc.)
|
|
30
|
+
- Window resize handling
|
|
31
|
+
- Works entirely within the TUI (no external terminal takeover)
|
|
32
|
+
- Manage SSH connections in an interactive Bubble Tea TUI
|
|
25
33
|
- **Dual credential storage modes:**
|
|
26
34
|
- **Local storage** with go-keyring (system keyring integration)
|
|
27
35
|
- **Bitwarden vault** storage via Bitwarden CLI
|
|
28
|
-
- Secure credential storage: passwords never stored in plaintext
|
|
29
|
-
- Password-based SSH login automation using passh (Unix) or plink.exe (Windows)
|
|
30
|
-
- Key-based SSH authentication
|
|
31
|
-
- Open connections in new tmux windows or
|
|
32
|
-
- Fullscreen and responsive TUI
|
|
36
|
+
- Secure credential storage: passwords never stored in plaintext
|
|
37
|
+
- Password-based SSH login automation using passh (Unix) or plink.exe (Windows)
|
|
38
|
+
- Key-based SSH authentication
|
|
39
|
+
- Open connections in new tmux windows or integrated terminal
|
|
40
|
+
- Fullscreen and responsive TUI
|
|
33
41
|
|
|
34
42
|
## Project Structure
|
|
35
43
|
|
|
@@ -227,8 +235,27 @@ sxt
|
|
|
227
235
|
- `Tab` to navigate, `Ctrl+p` to toggle auth type, `Enter` to submit, `Esc` to cancel.
|
|
228
236
|
|
|
229
237
|
5. **SSH Session:**
|
|
230
|
-
-
|
|
231
|
-
-
|
|
238
|
+
- Fully integrated terminal within Bubble Tea UI
|
|
239
|
+
- **Navigation:**
|
|
240
|
+
- `Esc` to disconnect and return to connection list
|
|
241
|
+
- `Ctrl+D` to send EOF (End of File) signal
|
|
242
|
+
- **Scrolling:**
|
|
243
|
+
- `PgUp` / `PgDn` to scroll up/down by 10 lines
|
|
244
|
+
- `Shift+Up` / `Shift+Down` for scrolling
|
|
245
|
+
- `Ctrl+Home` to scroll to top
|
|
246
|
+
- `Ctrl+End` to scroll to bottom
|
|
247
|
+
- Mouse wheel for scrolling
|
|
248
|
+
- **Text Selection & Copy:**
|
|
249
|
+
- Click and drag with mouse to select text
|
|
250
|
+
- `Ctrl+C` to copy selected text (or send interrupt if no selection)
|
|
251
|
+
- `Ctrl+Shift+C` to force copy selection
|
|
252
|
+
- Selected text is automatically copied to clipboard on mouse release
|
|
253
|
+
- **Terminal Features:**
|
|
254
|
+
- VT100/ANSI escape sequence support
|
|
255
|
+
- 10,000 line scrollback buffer
|
|
256
|
+
- Window resize support
|
|
257
|
+
- Full keyboard support (arrow keys, home, end, etc.)
|
|
258
|
+
- Passwords are supplied securely (never echoed or stored in plaintext).
|
|
232
259
|
|
|
233
260
|
## Configuration
|
|
234
261
|
|