Class: TTYString::CSICode::Tilde

Inherits:
TTYString::CSICode show all
Defined in:
lib/tty_string/csi_code_definitions.rb

Overview

leftovers:allow

Instance Method Summary collapse

Methods inherited from TTYString::CSICode

default_arg, #integer

Methods inherited from TTYString::Code

char, descendants, inherited, #initialize, render

Constructor Details

This class inherits a constructor from TTYString::Code

Instance Method Details

#action(arg) ⇒ Object



157
158
159
160
161
162
163
164
# File 'lib/tty_string/csi_code_definitions.rb', line 157

def action(arg)
  case arg
  when '200', '201'
    # bracketed paste
  else
    parser.unknown
  end
end