In Files

  • ruby-3.1.2/lib/reline/key_actor/base.rb

Files

Class/Module Index [+]

Quicksearch

Reline::KeyActor::Base

Constants

MAPPING

Public Class Methods

new() click to toggle source
 
               # File ruby-3.1.2/lib/reline/key_actor/base.rb, line 8
def initialize
  @default_key_bindings = {}
end
            

Public Instance Methods

default_key_bindings() click to toggle source
 
               # File ruby-3.1.2/lib/reline/key_actor/base.rb, line 12
def default_key_bindings
  @default_key_bindings
end
            
get_method(key) click to toggle source
 
               # File ruby-3.1.2/lib/reline/key_actor/base.rb, line 4
def get_method(key)
  self.class::MAPPING[key]
end
            
reset_default_key_bindings() click to toggle source
 
               # File ruby-3.1.2/lib/reline/key_actor/base.rb, line 16
def reset_default_key_bindings
  @default_key_bindings.clear
end