Class: Fir::UpArrowCommand

Inherits:
KeyCommand show all
Defined in:
lib/fir/key_command/up_arrow_command.rb

Instance Attribute Summary

Attributes inherited from KeyCommand

#character, #state

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from KeyCommand

build, #execute, for, handles?, inherited, #initialize, register, registry

Constructor Details

This class inherits a constructor from Fir::KeyCommand

Class Method Details

.character_regexObject



8
9
10
# File 'lib/fir/key_command/up_arrow_command.rb', line 8

def self.character_regex
  [/^\e\[A$/, /\x10/]
end

Instance Method Details

#execute_hook(new_state) ⇒ Object



12
13
14
15
# File 'lib/fir/key_command/up_arrow_command.rb', line 12

def execute_hook(new_state)
  new_state.history.up
  new_state
end