rtfm-filemanager 7.0.13 → 7.0.14
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/bin/rtfm +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e573fe0886eb3f338836fbf751fa2d24f4bb0ccdd6f8441dcfa8fb11e787a3c3
|
4
|
+
data.tar.gz: 433cc84863d13ca956e0332f497b53a607f21204b95bcb4bccaabb9896523afc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0785c69d762d6612833b71f8b86325dd042b9739481ca72f58f7593749f5e8f09baa7adc70bebb8af7139436c4a1004b8b3b41dc0db2844835b75fcaea8e9995'
|
7
|
+
data.tar.gz: 32b6814c2ff6d0370f979896f457c92fa721d3961473a538cd97d4fa3a66f3f00edf30884927bcf94d8863c89118416d6fb82b78af559e80cbd97b3c94cf7cd3
|
data/bin/rtfm
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
# get a great understanding of the code itself by simply sending
|
19
19
|
# or pasting this whole file into you favorite AI for coding with
|
20
20
|
# a prompt like this: "Help me understand every part of this code".
|
21
|
-
@version = '7.0.
|
21
|
+
@version = '7.0.14' # Fixed regex error when using '*' to mark all files with C-T
|
22
22
|
|
23
23
|
# SAVE & STORE TERMINAL {{{1
|
24
24
|
ORIG_STTY = `stty -g`.chomp
|
@@ -1560,6 +1560,10 @@ def tag_pattern # {{{3
|
|
1560
1560
|
# Reset bottom pane after input
|
1561
1561
|
@pB.clear; @pB.update = true
|
1562
1562
|
return if pat.nil? || pat.strip.empty?
|
1563
|
+
# Handle special case: * means match all files in current directory
|
1564
|
+
if pat == '*'
|
1565
|
+
pat = '.*' # Convert * to .* to match all files
|
1566
|
+
end
|
1563
1567
|
re = Regexp.new(pat)
|
1564
1568
|
matches = @files.grep(re).map { |t| File.join(Dir.pwd, t) }
|
1565
1569
|
matches.each do |f|
|
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: 7.0.
|
4
|
+
version: 7.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rcurses
|
@@ -53,7 +53,7 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '7.4'
|
55
55
|
description: |-
|
56
|
-
RTFM v7.0.
|
56
|
+
RTFM v7.0.14: Fixed regex error when using '*' to mark all files with C-T. Now properly converts '*' to '.*' regex pattern.
|
57
57
|
A full featured terminal browser with syntax highlighted files, images shown in the terminal, videos thumbnailed, etc. Features include remote SSH/SFTP browsing, interactive SSH shell, comprehensive undo system, bookmarks, and much more. You can bookmark and jump around easily, delete, rename, copy, symlink and move files. RTFM is one of the most feature-packed terminal file managers.
|
58
58
|
email: g@isene.com
|
59
59
|
executables:
|