Class: VER::Keymap::Results::Impossible
- Defined in:
- lib/ver/keymap.rb
Overview
Indicate that no result can and will be found in the keymap
Constant Summary
Constants inherited from Struct
Instance Attribute Summary collapse
-
#pattern ⇒ Object
Returns the value of attribute pattern.
Instance Method Summary collapse
Methods inherited from Struct
Instance Attribute Details
#pattern ⇒ Object
Returns the value of attribute pattern
7 8 9 |
# File 'lib/ver/keymap.rb', line 7 def pattern @pattern end |
Instance Method Details
#to_s ⇒ Object
8 9 10 11 |
# File 'lib/ver/keymap.rb', line 8 def to_s stack = pattern.map{|seq| Event[seq].keysym }.join(' - ') "#{stack} is undefined" end |