Class: Pry::Terminal
Class Method Summary collapse
- .actual_screen_size ⇒ Object
-
.height! ⇒ Object
Return a screen height or the default if that fails.
-
.screen_size ⇒ Object
Return a pair of [rows, columns] which gives the size of the window.
- .screen_size_according_to_ansicon_env ⇒ Object
- .screen_size_according_to_env ⇒ Object
- .screen_size_according_to_io_console ⇒ Object
- .screen_size_according_to_readline ⇒ Object
-
.size!(default = [27, 80]) ⇒ Object
Return a screen size or a default if that fails.
-
.width! ⇒ Object
Return a screen width or the default if that fails.
Class Method Details
.actual_screen_size ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/pry/terminal.rb', line 30 def actual_screen_size # The best way, if possible (requires non-jruby ≥1.9 or io-console gem) screen_size_according_to_io_console or # Fall back to the old standby, though it might be stale: screen_size_according_to_env or # Fall further back, though this one is also out of date without something # calling Readline.set_screen_size screen_size_according_to_readline or # Windows users can otherwise run ansicon and get a decent answer: screen_size_according_to_ansicon_env end |
.height! ⇒ Object
Return a screen height or the default if that fails.
26 27 28 |
# File 'lib/pry/terminal.rb', line 26 def height! size![0] end |
.screen_size ⇒ Object
Return a pair of [rows, columns] which gives the size of the window.
If the window size cannot be determined, return nil.
6 7 8 9 10 11 12 13 |
# File 'lib/pry/terminal.rb', line 6 def screen_size rows, cols = actual_screen_size if rows.to_i != 0 && cols.to_i != 0 [rows.to_i, cols.to_i] else nil end end |
.screen_size_according_to_ansicon_env ⇒ Object
67 68 69 70 71 |
# File 'lib/pry/terminal.rb', line 67 def screen_size_according_to_ansicon_env return unless ENV['ANSICON'] =~ /\((.*)x(.*)\)/ size = [$2, $1] size if nonzero_column?(size) end |
.screen_size_according_to_env ⇒ Object
51 52 53 54 |
# File 'lib/pry/terminal.rb', line 51 def screen_size_according_to_env size = [ENV['LINES'] || ENV['ROWS'], ENV['COLUMNS']] size if nonzero_column?(size) end |
.screen_size_according_to_io_console ⇒ Object
42 43 44 45 46 47 48 49 |
# File 'lib/pry/terminal.rb', line 42 def screen_size_according_to_io_console return if Pry::Helpers::BaseHelpers.jruby? require 'io/console' $stdout.winsize if $stdout.tty? and $stdout.respond_to?(:winsize) rescue LoadError # They probably don't have the io/console stdlib or the io-console gem. # We'll keep trying. end |
.screen_size_according_to_readline ⇒ Object
56 57 58 59 60 61 62 63 64 65 |
# File 'lib/pry/terminal.rb', line 56 def screen_size_according_to_readline if defined?(Readline) && Readline.respond_to?(:get_screen_size) size = Readline.get_screen_size size if nonzero_column?(size) end rescue Java::JavaLang::NullPointerException # This rescue won't happen on jrubies later than: # https://github.com/jruby/jruby/pull/436 nil end |
.size!(default = [27, 80]) ⇒ Object
Return a screen size or a default if that fails.
16 17 18 |
# File 'lib/pry/terminal.rb', line 16 def size! default = [27, 80] screen_size || default end |
.width! ⇒ Object
Return a screen width or the default if that fails.
21 22 23 |
# File 'lib/pry/terminal.rb', line 21 def width! size![1] end |