Class: Reline::KeyStroke
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/reline/key_stroke.rb |
Class Method Summary
- .new(config) ⇒ KeyStroke constructor
Instance Method Summary
Constructor Details
.new(config) ⇒ KeyStroke
# File 'lib/reline/key_stroke.rb', line 14
def initialize(config) @config = config end
Instance Method Details
#expand(input)
[ GitHub ]# File 'lib/reline/key_stroke.rb', line 34
def (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 ( (rhs_bytes) + (input.drop(lhs.size))) when Symbol [rhs] + (input.drop(lhs.size)) when Array rhs end end
#key_mapping (private)
[ GitHub ]# File 'lib/reline/key_stroke.rb', line 52
def key_mapping @config.key_bindings end
#match_status(input)
[ GitHub ]# File 'lib/reline/key_stroke.rb', line 18
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