Class: Twterm::KeyMapper::TabKeyMapper

Inherits:
AbstractKeyMapper show all
Defined in:
lib/twterm/key_mapper/tab_key_mapper.rb

Constant Summary collapse

DEFAULT_MAPPINGS =
{
  :'1st' => '1',
  :'2nd' => '2',
  :'3rd' => '3',
  :'4th' => '4',
  :'5th' => '5',
  :'6th' => '6',
  :'7th' => '7',
  :'8th' => '8',
  :'9th' => '9',
  close: 'w',
  find_next: 'n',
  find_previous: 'N',
  last: '0',
  new: '^T',
  reload: '^R',
  search_down: '/',
  search_up: '?',
}.freeze

Class Method Summary collapse

Methods inherited from AbstractKeyMapper

#[], commands, #initialize, #to_h

Constructor Details

This class inherits a constructor from Twterm::KeyMapper::AbstractKeyMapper

Class Method Details

.categoryObject



26
27
28
# File 'lib/twterm/key_mapper/tab_key_mapper.rb', line 26

def self.category
  'tab'.freeze
end