rtfm-filemanager 3.0 → 3.0.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/bin/rtfm +5 -1
- data/rtfm-kb.png +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27690557e41c763ab79f9313748d5f6a5186977933ce86f95a1d51c66d5ddc1d
|
|
4
|
+
data.tar.gz: ffac0e716e12098439197a19c31750e06b83261155c1568094c88b9f8cd73dd9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bebd1eed63aa5d642c0f944c906dbb03932e5b227e890545d18e14372ec1a6ca59091a8cb38743ff5eaea889214be01bb6d71f9e15baca0163a5ea4a18c7088
|
|
7
|
+
data.tar.gz: 513bd2ae1edbcd7284767016e778b687f8d619a49d817256557c9e55c7f26f6f870d47dfd9f32864d5a27ec54acbb066147805e516bea0dea447bce9207438e7
|
data/bin/rtfm
CHANGED
|
@@ -14,6 +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.0.2"
|
|
17
18
|
|
|
18
19
|
# PRELIMINARIES
|
|
19
20
|
@help = <<HELPTEXT
|
|
@@ -27,6 +28,7 @@ BASIC KEYS
|
|
|
27
28
|
(@lsall, @lslong, @lsorder, @lsinvert, @border, @width, @preview, @tagged, @marks)
|
|
28
29
|
q = Quit
|
|
29
30
|
Q = QUIT (without writing changes to the config file)
|
|
31
|
+
v = Display RTFM version in bottom window/command bar
|
|
30
32
|
|
|
31
33
|
MOTION
|
|
32
34
|
j/DOWN = Go one item down in left pane (rounds to top)
|
|
@@ -108,7 +110,7 @@ ADDITIONAL COMMANDS
|
|
|
108
110
|
; = Show command history in right pane
|
|
109
111
|
y = Copy path of selected item to primary selection (for pasting with middle mouse button)
|
|
110
112
|
Y = Copy path of selected item to clipboard
|
|
111
|
-
|
|
113
|
+
Ctrl-y = Copy content of right pane to clipboard
|
|
112
114
|
S = Show comprehensive System info (system, CPU, filesystem, latest dmesg messages)
|
|
113
115
|
Ctrl-n = Invoke navi (see https://github.com/denisidoro/navi) with any output in right window
|
|
114
116
|
|
|
@@ -357,6 +359,8 @@ def main_getkey # GET KEY FROM USER
|
|
|
357
359
|
system("printf \"\033]0;#{Dir.pwd}\007\"")
|
|
358
360
|
@write_conf = false
|
|
359
361
|
exit 0
|
|
362
|
+
when 'v'
|
|
363
|
+
w_b_info("RTFM version = #{@version} (latest RubyGems version is #{Gem.latest_version_for("rtfm-filemanager").version} - https://github.com/isene/RTFM)")
|
|
360
364
|
# MOTION
|
|
361
365
|
when 'DOWN', 'j', 'C-DOWN'
|
|
362
366
|
var_resets
|
data/rtfm-kb.png
ADDED
|
Binary file
|
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:
|
|
4
|
+
version: 3.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geir Isene
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-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.0: Added
|
|
51
|
-
Better width stepping. Code refactoring.'
|
|
50
|
+
other features. New in 3.0.2: Added keyboard cheat sheet.'
|
|
52
51
|
email: g@isene.com
|
|
53
52
|
executables:
|
|
54
53
|
- rtfm
|
|
@@ -58,6 +57,7 @@ files:
|
|
|
58
57
|
- ".rtfm.launch"
|
|
59
58
|
- README.md
|
|
60
59
|
- bin/rtfm
|
|
60
|
+
- rtfm-kb.png
|
|
61
61
|
homepage: https://isene.com/
|
|
62
62
|
licenses:
|
|
63
63
|
- Unlicense
|