rtfm-filemanager 7.0.9 → 7.0.10
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 +3 -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: 8fd762390ad851e1dc15dad9d9a9f1657939f84a47ddb7901a0876d8aff3c12e
|
4
|
+
data.tar.gz: 171cfe2b01183acad06a46484391e8b9017c0b748b28a573e3b67a540bcbc89a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d9c90bcf338ad88eec1ff04d170238e7f3accc3131bb47a6b71b3a4bc1e65b103e8230825d9853ac3db86501e18cdc30f038b215e766d191cd2b89782eccc20
|
7
|
+
data.tar.gz: 8fdc1100e82190f7b500468d06227b2171d024fba8998daf38b774b5b9cdab5da5063383990d0048cd9e1ac37cfb4aea604c9096438bff3f8152794df27f6b06
|
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.10' # Fixed terminal state issue for interactive programs like HyperList
|
22
22
|
|
23
23
|
# SAVE & STORE TERMINAL {{{1
|
24
24
|
ORIG_STTY = `stty -g`.chomp
|
@@ -5049,6 +5049,8 @@ def open_selected(html = nil) # OPEN SELECTED FILE {{{2
|
|
5049
5049
|
# Use exactly the same logic as command_mode with § prefix (force interactive)
|
5050
5050
|
# Restore shell tty so Ctrl-C/D work
|
5051
5051
|
system("stty #{ORIG_STTY} < /dev/tty")
|
5052
|
+
# Reset terminal to sane/cooked mode for interactive programs
|
5053
|
+
system('stty sane < /dev/tty')
|
5052
5054
|
# Clear to top-left
|
5053
5055
|
system('clear < /dev/tty > /dev/tty')
|
5054
5056
|
Cursor.show
|
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.10
|
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-08-
|
11
|
+
date: 2025-08-23 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.10: Fixed terminal state issue causing multiple keypresses required in interactive programs like HyperList.
|
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:
|