Class
Class Methods
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 88
def self.clear_screen
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 63
def self.cursor_pos
Reline::CursorPos.new(1, 1)
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 114
def self.deprep(otio)
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 13
def self.encoding
if defined?(@@encoding)
@@encoding
elsif RUBY_PLATFORM =~ /mswin|mingw/
Encoding::UTF_8
else
Encoding::default_external
end
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 82
def self.erase_after_cursor
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 107
def self.finish_pasting
@@pasting = false
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 59
def self.get_screen_size
[1, 1]
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 41
def self.getc(_timeout_second)
unless @@buf.empty?
return @@buf.shift
end
c = nil
loop do
result = @@input.wait_readable(0.1)
next if result.nil?
c = @@input.read(1)
break
end
c&.ord
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 67
def self.hide_cursor
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 99
def self.in_pasting?
@@pasting
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 33
def self.input=(val)
@@input = val
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 73
def self.move_cursor_column(val)
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 79
def self.move_cursor_down(val)
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 76
def self.move_cursor_up(val)
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 111
def self.prep
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 4
def self.reset(encoding: nil)
@@pasting = false
if encoding
@@encoding = encoding
elsif defined?(@@encoding)
remove_class_variable(:@@encoding)
end
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 85
def self.scroll_down(val)
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 27
def self.set_default_key_bindings(_)
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 91
def self.set_screen_size(rows, columns)
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 94
def self.set_winch_handler(&handler)
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 70
def self.show_cursor
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 103
def self.start_pasting
@@pasting = true
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 55
def self.ungetc(c)
@@buf.unshift(c)
end
No documentation available
::
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 23
def self.win?
false
end
No documentation available
lib/reline/general_io.rb
View on GitHub
# File tmp/rubies/ruby-3.3.0/lib/reline/general_io.rb, line 37
def self.with_raw_input
yield
end
No documentation available