rtfm-filemanager 7.5.3 → 8.0.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +15 -1
- data/bin/rtfm +911 -116
- data/docs/keyboard-reference.md +15 -3
- data/docs/remote-browsing.md +4 -4
- metadata +8 -8
data/docs/keyboard-reference.md
CHANGED
|
@@ -238,10 +238,22 @@ When viewing an image, `Ctrl-y` copies the actual image file - paste into GIMP,
|
|
|
238
238
|
|
|
239
239
|
| Key | Action |
|
|
240
240
|
|-----|--------|
|
|
241
|
-
| `
|
|
241
|
+
| `Enter` | Browse archive as virtual directory |
|
|
242
|
+
| `x` | Open archive with external program (bypass browsing) |
|
|
243
|
+
| `z` | Extract tagged archive to current directory |
|
|
242
244
|
| `Z` | Create archive from tagged items |
|
|
243
245
|
|
|
244
|
-
**
|
|
246
|
+
**Inside archive browsing mode:**
|
|
247
|
+
|
|
248
|
+
| Key | Action |
|
|
249
|
+
|-----|--------|
|
|
250
|
+
| `d` | Delete entry from archive |
|
|
251
|
+
| `D` | Extract entry to origin directory |
|
|
252
|
+
| `p` | Add pre-tagged local files into archive |
|
|
253
|
+
| `t` | Tag/untag entries for bulk operations |
|
|
254
|
+
| `LEFT` | Go to parent directory / exit archive |
|
|
255
|
+
|
|
256
|
+
**Supported formats:** .zip, .tar.gz, .tar.bz2, .tar.xz, .rar, .7z
|
|
245
257
|
|
|
246
258
|
## Git Operations
|
|
247
259
|
|
|
@@ -333,7 +345,7 @@ Useful for plugin development and debugging.
|
|
|
333
345
|
| `↑` `↓` | Navigate files |
|
|
334
346
|
| `←` `h` | Parent directory |
|
|
335
347
|
| `→` `ENTER` | Show file info |
|
|
336
|
-
| `
|
|
348
|
+
| `D` | Download file |
|
|
337
349
|
| `u` | Upload tagged files |
|
|
338
350
|
| `s` | Open SSH shell |
|
|
339
351
|
|
data/docs/remote-browsing.md
CHANGED
|
@@ -11,7 +11,7 @@ RTFM lets you browse and manage files on remote servers via SSH/SFTP as seamless
|
|
|
11
11
|
1. Press `Ctrl-e` to enter remote mode
|
|
12
12
|
2. Enter connection: `user@server.com:/path/to/directory`
|
|
13
13
|
3. Navigate with normal keys
|
|
14
|
-
4. Press `
|
|
14
|
+
4. Press `D` to download, `u` to upload
|
|
15
15
|
5. Press `Ctrl-e` to return to local mode
|
|
16
16
|
|
|
17
17
|
## Connection Formats
|
|
@@ -90,13 +90,13 @@ Press `→` or `ENTER` on a file to see:
|
|
|
90
90
|
### Download Single File
|
|
91
91
|
|
|
92
92
|
1. Navigate to file
|
|
93
|
-
2. Press `
|
|
93
|
+
2. Press `D`
|
|
94
94
|
3. File downloads to your current local directory
|
|
95
95
|
|
|
96
96
|
### Download Multiple Files
|
|
97
97
|
|
|
98
98
|
1. Tag files with `t`
|
|
99
|
-
2. Press `
|
|
99
|
+
2. Press `D`
|
|
100
100
|
3. All tagged files download
|
|
101
101
|
|
|
102
102
|
**Download location:** Current local directory (where you were before entering remote mode)
|
|
@@ -221,7 +221,7 @@ Tag local files → Ctrl-e → server:/var/www → u (upload)
|
|
|
221
221
|
### Backup Files
|
|
222
222
|
|
|
223
223
|
```
|
|
224
|
-
Ctrl-e → server:/data → Tag files →
|
|
224
|
+
Ctrl-e → server:/data → Tag files → D (download)
|
|
225
225
|
```
|
|
226
226
|
|
|
227
227
|
### Quick Config Edit
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rtfm-filemanager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 8.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geir Isene
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rcurses
|
|
@@ -66,12 +66,12 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '7.4'
|
|
69
|
-
description: 'RTFM
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
RTFM is one of the most feature-packed terminal file managers.'
|
|
69
|
+
description: 'RTFM v8.0: Browse and modify archives as virtual directories (extract,
|
|
70
|
+
delete, add, move), async background file operations, scrollable diff viewer with
|
|
71
|
+
side-by-side mode. A full featured terminal browser with syntax highlighted files,
|
|
72
|
+
images shown in the terminal, videos thumbnailed, etc. Features include remote SSH/SFTP
|
|
73
|
+
browsing, interactive SSH shell, comprehensive undo system, OpenAI integration,
|
|
74
|
+
bookmarks, and much more. RTFM is one of the most feature-packed terminal file managers.'
|
|
75
75
|
email: g@isene.com
|
|
76
76
|
executables:
|
|
77
77
|
- rtfm
|