rtfm-filemanager 5.9 → 5.10.3

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +25 -4
  3. data/bin/rtfm +988 -111
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b51c7ac3f1785aaca41165d25820ea6f939b484c750c2f0296d6c6303e360eb
4
- data.tar.gz: 6971374d4041158bb0a914d141524c625b6323f3609e427397375d53d4be8d2c
3
+ metadata.gz: 9d7c0c2ffe8ed1c1ce772e12947e06604ac06924ea4007e7a69921f863539cbe
4
+ data.tar.gz: 4148690a7f29b0d6d3ca2eb2458c77bccf092ef0701902f76626a53f9046c48d
5
5
  SHA512:
6
- metadata.gz: 90bb41b3898f746ecac551330fa68fb1ebf2a130a9ba8627b0623f14f900f5de9701030a11a2a16f05aab430041a5e3d432e53f1cf687ecef6b857ee1d3b70d5
7
- data.tar.gz: 80188dce4eaa620ed49b5ca078e9099f000a4f5715dc1c026520c7ed207237df276f5765d7f0b3a3993b5533ad6045754ccd0524615b45c9d0d5c7be3eaea41f
6
+ metadata.gz: caf13afa58bb810e25f501749d571d0540941889c5275a9636be9b9c1cc994e8f668fe9d2f69c6b7b39cc4be704113ea0944f183b2d6446e02ab5b6901b84ab6
7
+ data.tar.gz: 5af8c68024fe89088136374451ef4bf9750185bacd6aabdd23599f76a0a92c09b7ff7ff4407a37c9194c01eabf5c304150bb2b62413847085b8795ba81ce4604
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
- of the selected item (directory or file) is shown in the right pane. The right
79
- pane is also used to show information such as the currently tagged items, your
80
- (book)marks, output from commands, error messages, etc.
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
  ---------|------------------------------------------------------------------