rtfm-filemanager 1.2.3 → 1.3.0
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 +4 -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: f074d7e27f2d2eec77ff1d33aaf4e783e2bf7c4624aba2882e6edfea1f9eacd8
|
|
4
|
+
data.tar.gz: 4a4a1b915e8ec445918b0ae774d67c798b6823b19ddc49ce1d92a49f229796a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4086961612be3e5e2a3d9a3f39dba7cd6686fcf803a568215de2c535a06a044edd497370729bcb16314fdd707e8825aeb97e6c066fa322e2d8191afbac79b6dd
|
|
7
|
+
data.tar.gz: 7970bcf40bf96f79d213f8787feafc66ec52c7693df5e580872830e3562ca9b3d5149eb2aa3ae47c14289ed4e37c5fc87fe695529d64fbe6e0c5e87fe978b5b8
|
data/bin/rtfm
CHANGED
|
@@ -81,6 +81,7 @@ RIGHT PANE
|
|
|
81
81
|
|
|
82
82
|
ADDITINAL COMMANDS
|
|
83
83
|
/ = Enter search string in bottom window to highlight matching items
|
|
84
|
+
g = Run 'grep' to show files that contains the MATCH in current directory
|
|
84
85
|
: = Enter "command mode" in bottom window (press ENTER to execute, press Ctrl-G to escape)
|
|
85
86
|
; = Show command history in right pane
|
|
86
87
|
y = Copy path of selected item to primary selection (for pasting with middle mouse button)
|
|
@@ -396,6 +397,9 @@ def main_getkey # GET KEY FROM USER
|
|
|
396
397
|
Dir.chdir(File.dirname(File.readlink(@selected)))
|
|
397
398
|
end
|
|
398
399
|
@w_b.update = true
|
|
400
|
+
when 'g' # Run 'grep' in the current directory
|
|
401
|
+
cmd = w_b_getstr(": ", "grep -s MATCH *")
|
|
402
|
+
w_b_exec(cmd)
|
|
399
403
|
when 'L' # Run 'locate' and let user jump to a result (by '#')
|
|
400
404
|
cmd = w_b_getstr(": ", "locate ")
|
|
401
405
|
w_b_exec(cmd)
|
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: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geir Isene
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: curses
|
|
@@ -30,10 +30,10 @@ dependencies:
|
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.3.2
|
|
33
|
-
description: A full featured terminal browser with syntax highlighted files, images
|
|
33
|
+
description: 'A full featured terminal browser with syntax highlighted files, images
|
|
34
34
|
shown in the terminal, videos thumbnailed, etc. You can bookmark and jump around
|
|
35
35
|
easily, delete, rename, copy, symlink and move files. RTFM has a a wide range of
|
|
36
|
-
other features.
|
|
36
|
+
other features. New in 1.3.0: Added ''grep'' functionality via the ''g'' key'
|
|
37
37
|
email: g@isene.com
|
|
38
38
|
executables:
|
|
39
39
|
- rtfm
|