rtfm-filemanager 3.30 → 3.32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -10
- data/bin/rtfm +3 -3
- 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: e993983d6be7d6b0356d33ebce27d69fb5c1c631d5fa44da8037c69d6b30cbdd
|
4
|
+
data.tar.gz: 9cb4e04034f71a64ec2cbc12e0b441316f22211eef2b312bca8da7c6f1fa956d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad63a0f9c1758410a9a878ab4e8814b17d0556507448b1f83228121580a5bd704110d0480f4cbd7927689257bb1456fa90262951ac9f8f3b246a7d20c2262859
|
7
|
+
data.tar.gz: 2ec5a0f594b9bd8d174d875ca7bc489b64a87fe6a62718410bdaac7fe3c4f630af4ea21b0510f4f01ca2e24dae07534cfc972dac8c4ad65e2cadf9712a626e9d
|
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.32" # Fixed forking upon opening external apps
|
18
18
|
|
19
19
|
# PRELIMINARIES
|
20
20
|
@help = <<HELPTEXT
|
@@ -1152,10 +1152,10 @@ def open_selected(html = nil) # OPEN SELECTED ITEM (when pressing RIGHT)
|
|
1152
1152
|
else
|
1153
1153
|
if @runmailcap
|
1154
1154
|
#Thread.new { system("run-mailcap #{@selected_safe} 2>/dev/null") }
|
1155
|
-
system("run-mailcap #{@selected_safe} 2>/dev/null")
|
1155
|
+
system("run-mailcap #{@selected_safe} & 2>/dev/null")
|
1156
1156
|
else
|
1157
1157
|
#Thread.new { system("xdg-open #{@selected_safe} 2>/dev/null") }
|
1158
|
-
system("xdg-open #{@selected_safe} 2>/dev/null")
|
1158
|
+
system("xdg-open #{@selected_safe} & 2>/dev/null")
|
1159
1159
|
end
|
1160
1160
|
end
|
1161
1161
|
@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.32'
|
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-11-27 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.32: Fixed 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
|