PHP 8.2.31
Preview: base.rb Size: 712 B
/proc/thread-self/root/opt/alt/ruby34/share/ruby/reline/key_actor/base.rb

class Reline::KeyActor::Base
  def initialize(mappings = nil)
    @matching_bytes = {}
    @key_bindings = {}
    add_mappings(mappings) if mappings
  end

  def add_mappings(mappings)
    add([27], :ed_ignore)
    128.times do |key|
      func = mappings[key]
      meta_func = mappings[key | 0b10000000]
      add([key], func) if func
      add([27, key], meta_func) if meta_func
    end
  end

  def add(key, func)
    (1...key.size).each do |size|
      @matching_bytes[key.take(size)] = true
    end
    @key_bindings[key] = func
  end

  def matching?(key)
    @matching_bytes[key]
  end

  def get(key)
    @key_bindings[key]
  end

  def clear
    @matching_bytes.clear
    @key_bindings.clear
  end
end

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
712 B lrw-r--r-- 2026-04-20 12:16:12
Edit Download
324 B lrw-r--r-- 2026-04-20 12:16:12
Edit Download
7.01 KB lrw-r--r-- 2026-04-20 12:16:12
Edit Download
6.49 KB lrw-r--r-- 2026-04-20 12:16:12
Edit Download
6.60 KB lrw-r--r-- 2026-04-20 12:16:12
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).