rtfm-filemanager 3.30 → 3.33
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 +12 -10
- data/bin/rtfm +3 -10
- metadata +4 -5
- /data/{rtfm-kb.png → img/rtfm-kb.png} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbc6f9f61c945000c94d49df1a6179d40cb4f4455bb2d6f6ed7a604b36852dec
|
4
|
+
data.tar.gz: 62d75ebd9c6a15c91d1bd0dcb40efa23ed0cfb72e9129128ff18ee76ec1eb0ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b8e2773e002d25be1c7e6d6497ae1043d1ba6e50284bbb2e0a5620cdd0bc6f34c5b3fc75dd17bfcba23e9b452c65e6458e50d0607b3ec87f490adcd6528d32e
|
7
|
+
data.tar.gz: 911d0a76aaf039bc9fa3ae3b45a12840afaa45d5643e6bc0781f77e7f8c850e17da5a3419888721993625598fdf274bb4a75304b95157d490cc70ca27154e4b7
|
data/README.md
CHANGED
@@ -4,16 +4,18 @@
|
|
4
4
|
|
5
5
|
What other features can I cram into this file manager?
|
6
6
|
|
7
|
-
## What?
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
7
|
+
## What?
|
8
|
+
|
9
|
+
<img src="img/logo.jpg" align="left" width="150" height="150"> RTFM is a
|
10
|
+
terminal file manager jam packed with features.
|
11
|
+
|
12
|
+
Apart from viewing and manipulating directories, you get syntax highlighting
|
13
|
+
of file content, image and video thumbnailing in the terminal, OpenAI
|
14
|
+
integration, system info panel, git status, fzf and navi integration and much,
|
15
|
+
much more.
|
16
|
+
|
17
|
+
Note: RTFM (Ruby Terminal File Manager) works best with the (u)rxvt, xterm and
|
18
|
+
Eterm terminal emulators.
|
17
19
|
|
18
20
|
## Features
|
19
21
|
|
data/bin/rtfm
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
# for any damages resulting from its use. Further, I am under no
|
15
15
|
# obligation to maintain or extend this software. It is provided
|
16
16
|
# on an 'as is' basis without any expressed or implied warranty.
|
17
|
-
@version = "3.
|
17
|
+
@version = "3.33" # Bugfix after fixing forking upon opening external apps
|
18
18
|
|
19
19
|
# PRELIMINARIES
|
20
20
|
@help = <<HELPTEXT
|
@@ -396,7 +396,6 @@ def getchr # PROCESS KEY PRESSES
|
|
396
396
|
when /[[:print:]]/ then chr = c
|
397
397
|
else chr = ""
|
398
398
|
end
|
399
|
-
#stdin_clear
|
400
399
|
return chr
|
401
400
|
end
|
402
401
|
def main_getkey # GET KEY FROM USER
|
@@ -943,12 +942,6 @@ def main_getkey # GET KEY FROM USER
|
|
943
942
|
rescue
|
944
943
|
end
|
945
944
|
end
|
946
|
-
def stdin_clear
|
947
|
-
begin
|
948
|
-
$stdin.getc while $stdin.ready?
|
949
|
-
rescue
|
950
|
-
end
|
951
|
-
end
|
952
945
|
def conf_write
|
953
946
|
if File.exist?(Dir.home+'/.rtfm.conf')
|
954
947
|
conf = File.read(Dir.home+'/.rtfm.conf')
|
@@ -1152,10 +1145,10 @@ def open_selected(html = nil) # OPEN SELECTED ITEM (when pressing RIGHT)
|
|
1152
1145
|
else
|
1153
1146
|
if @runmailcap
|
1154
1147
|
#Thread.new { system("run-mailcap #{@selected_safe} 2>/dev/null") }
|
1155
|
-
system("run-mailcap #{@selected_safe} 2>/dev/null")
|
1148
|
+
system("run-mailcap #{@selected_safe} 2>/dev/null &")
|
1156
1149
|
else
|
1157
1150
|
#Thread.new { system("xdg-open #{@selected_safe} 2>/dev/null") }
|
1158
|
-
system("xdg-open #{@selected_safe} 2>/dev/null")
|
1151
|
+
system("xdg-open #{@selected_safe} 2>/dev/null &")
|
1159
1152
|
end
|
1160
1153
|
end
|
1161
1154
|
@break = true
|
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: '3.
|
4
|
+
version: '3.33'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: curses
|
@@ -47,8 +47,7 @@ dependencies:
|
|
47
47
|
description: 'A full featured terminal browser with syntax highlighted files, images
|
48
48
|
shown in the terminal, videos thumbnailed, etc. You can bookmark and jump around
|
49
49
|
easily, delete, rename, copy, symlink and move files. RTFM has a a wide range of
|
50
|
-
other features. New in 3.
|
51
|
-
to add own by setting @aimodel in .rtfm.conf.'
|
50
|
+
other features. New in 3.33: Bugfix after fixing forking upon opening external apps.'
|
52
51
|
email: g@isene.com
|
53
52
|
executables:
|
54
53
|
- rtfm
|
@@ -57,7 +56,7 @@ extra_rdoc_files: []
|
|
57
56
|
files:
|
58
57
|
- README.md
|
59
58
|
- bin/rtfm
|
60
|
-
- rtfm-kb.png
|
59
|
+
- img/rtfm-kb.png
|
61
60
|
homepage: https://isene.com/
|
62
61
|
licenses:
|
63
62
|
- Unlicense
|
File without changes
|