Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.149.253.148
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
share /
ruby /
reline /
Delete
Unzip
Name
Size
Permission
Date
Action
key_actor
[ DIR ]
drwxr-xr-x
2024-03-03 22:47
unicode
[ DIR ]
drwxr-xr-x
2024-03-03 22:47
ansi.rb
4.73
KB
-rw-r--r--
2023-03-30 12:34
config.rb
8.6
KB
-rw-r--r--
2023-03-30 12:34
general_io.rb
1.01
KB
-rw-r--r--
2023-03-30 12:34
history.rb
1.87
KB
-rw-r--r--
2023-03-30 12:34
key_actor.rb
169
B
-rw-r--r--
2023-03-30 12:34
key_stroke.rb
1.22
KB
-rw-r--r--
2023-03-30 12:34
kill_ring.rb
2.2
KB
-rw-r--r--
2023-03-30 12:34
line_editor.rb
72.72
KB
-rw-r--r--
2023-03-30 12:34
unicode.rb
18.54
KB
-rw-r--r--
2023-03-30 12:34
version.rb
38
B
-rw-r--r--
2023-03-30 12:34
windows.rb
9.04
KB
-rw-r--r--
2023-03-30 12:34
Save
Rename
class Reline::KeyStroke using Module.new { refine Array do def start_with?(other) other.size <= size && other == self.take(other.size) end def bytes self end end } def initialize(config) @config = config end def match_status(input) key_mapping.keys.select { |lhs| lhs.start_with? input }.tap { |it| return :matched if it.size == 1 && (it.max_by(&:size)&.size&.== input.size) return :matching if it.size == 1 && (it.max_by(&:size)&.size&.!= input.size) return :matched if it.max_by(&:size)&.size&.< input.size return :matching if it.size > 1 } key_mapping.keys.select { |lhs| input.start_with? lhs }.tap { |it| return it.size > 0 ? :matched : :unmatched } end def expand(input) lhs = key_mapping.keys.select { |item| input.start_with? item }.sort_by(&:size).reverse.first return input unless lhs rhs = key_mapping[lhs] case rhs when String rhs_bytes = rhs.bytes expand(expand(rhs_bytes) + expand(input.drop(lhs.size))) when Symbol [rhs] + expand(input.drop(lhs.size)) when Array rhs end end private def key_mapping @config.key_bindings end end