rtfm-filemanager 5.8.2 → 5.10.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.
- checksums.yaml +4 -4
- data/README.md +25 -4
- data/bin/rtfm +990 -111
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d46e4e79947b4b99cdfd9f3e043618cefb3cc62f4e3adf4b1437b0abc503b4a
|
4
|
+
data.tar.gz: 6bbc7aabad3b01194ec9ee0c4765f98b828b24e79c29f042711ae27457326e5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2003e8c6731438e4e7ae6fa7602dd3926d8dc1c9eb475034ee118fd5254a4aa7536d0b5242adcfb6dd9d3a6e9193ca9a7f5928e158b2fafe47bd8e1906c54b0a
|
7
|
+
data.tar.gz: 67018c16c96e7aaa0cca2c7368f5b36601f75af76512c3dd90ff11c416a08a9872ac8d0f08a9023e529068f6d1e670976885bb2928713a515dadc6eba8bd3e4b
|
data/README.md
CHANGED
@@ -57,6 +57,9 @@ features are:
|
|
57
57
|
* See if a directory (with sub dirs) has changed using cryptographic hashes
|
58
58
|
* Integration with OpenAI to get an executive summary of file content
|
59
59
|
* ***OpenAI chat integrated; Discuss files, content, commands with OpenAI***
|
60
|
+
* ***Enhanced tab management*** with duplication, renaming, and smart navigation
|
61
|
+
* ***Improved stability*** with simplified architecture and eliminated flickering
|
62
|
+
* ***Automatic image redraw*** after workspace switching (i3-wm compatible)
|
60
63
|
* Possibility to change top line background when matching a path
|
61
64
|
* Theming of pane colors
|
62
65
|
|
@@ -74,10 +77,17 @@ written from scratch in pure Ruby - and from v5 and onwards, RTFM is based
|
|
74
77
|
completely on this modern curses implementation.
|
75
78
|
|
76
79
|
## How?
|
77
|
-
RTFM is a two-pane file manager. You navigate in the left pane and the content
|
78
|
-
|
79
|
-
|
80
|
-
|
80
|
+
RTFM is a modern two-pane file manager with **enhanced tab support** for multi-directory navigation. You navigate in the left pane and the content of the selected item (directory or file) is shown in the right pane. The right pane is also used to show information such as the currently tagged items, your (book)marks, output from commands, error messages, etc.
|
81
|
+
|
82
|
+
The **tab system** is visible in the top-right corner showing your current position like `[2/5]` (tab 2 of 5 total tabs). The tab bar displays when you have multiple tabs or use tab commands, showing directory names and management shortcuts.
|
83
|
+
|
84
|
+
**Enhanced Tab Features:**
|
85
|
+
* **Multiple tabs** for easy multi-directory management
|
86
|
+
* **Tab duplication** (`}`) to quickly copy current directory context
|
87
|
+
* **Tab renaming** (`{`) for better organization
|
88
|
+
* **Smart tab display** showing current directory and shortcuts
|
89
|
+
* **Quick tab switching** with number keys (1-9), J/K navigation
|
90
|
+
* **Visual tab indicator** in top-right corner `[current/total]`
|
81
91
|
|
82
92
|
When you start RTFM, you can supply a directory path as an argument to let
|
83
93
|
RTFM start up in that directory. When you exit it exits into the current RTFM
|
@@ -222,6 +232,17 @@ Key | Description
|
|
222
232
|
T | Show currently tagged items in right pane
|
223
233
|
u | Untag all tagged items
|
224
234
|
|
235
|
+
### Tab management
|
236
|
+
Key | Description
|
237
|
+
---------|------------------------------------------------------------------
|
238
|
+
] | Create new tab in current directory
|
239
|
+
[ | Close current tab (keeps at least one tab open)
|
240
|
+
J | Previous tab (wraps around)
|
241
|
+
K | Next tab (wraps around)
|
242
|
+
} | Duplicate current tab (creates a copy with same directory)
|
243
|
+
{ | Rename current tab
|
244
|
+
1-9 | Switch to tab by number (1 = first tab, 2 = second tab, etc.)
|
245
|
+
|
225
246
|
### Manipulate items
|
226
247
|
Key | Description
|
227
248
|
---------|------------------------------------------------------------------
|