Skip to Content Skip to Search
Methods
D
G
N

Constants

MAPPING = Array.new(256)
 

Class Public methods

new()

# File ruby/lib/reline/key_actor/base.rb, line 8
def initialize
  @default_key_bindings = {}
end

Instance Public methods

default_key_bindings()

# File ruby/lib/reline/key_actor/base.rb, line 12
def default_key_bindings
  @default_key_bindings
end

get_method(key)

# File ruby/lib/reline/key_actor/base.rb, line 4
def get_method(key)
  self.class::MAPPING[key]
end