Module: Vedeu::EscapeSequences::Actions
Overview
Provides action related escape sequences.
Instance Method Summary collapse
- #bg_reset ⇒ String
- #blink ⇒ String
- #blink_off ⇒ String
- #bold ⇒ String
- #bold_off ⇒ String
- #cursor_position ⇒ String
- #dim ⇒ String
- #fg_reset ⇒ String
- #hide_cursor ⇒ String
- #negative ⇒ String
- #positive ⇒ String
- #reset ⇒ String
- #show_cursor ⇒ String
- #underline ⇒ String
- #underline_off ⇒ String
Instance Method Details
#bg_reset ⇒ String
16 17 18 |
# File 'lib/vedeu/esc/actions.rb', line 16 def bg_reset "\e[49m" end |
#blink ⇒ String
21 22 23 |
# File 'lib/vedeu/esc/actions.rb', line 21 def blink "\e[5m" end |
#blink_off ⇒ String
26 27 28 |
# File 'lib/vedeu/esc/actions.rb', line 26 def blink_off "\e[25m" end |
#bold ⇒ String
31 32 33 |
# File 'lib/vedeu/esc/actions.rb', line 31 def bold "\e[1m" end |
#bold_off ⇒ String
36 37 38 |
# File 'lib/vedeu/esc/actions.rb', line 36 def bold_off "\e[22m" end |
#cursor_position ⇒ String
41 42 43 |
# File 'lib/vedeu/esc/actions.rb', line 41 def cursor_position "\e[6n" end |
#dim ⇒ String
46 47 48 |
# File 'lib/vedeu/esc/actions.rb', line 46 def dim "\e[2m" end |
#fg_reset ⇒ String
51 52 53 |
# File 'lib/vedeu/esc/actions.rb', line 51 def fg_reset "\e[39m" end |
#hide_cursor ⇒ String
56 57 58 |
# File 'lib/vedeu/esc/actions.rb', line 56 def hide_cursor "\e[?25l" end |
#negative ⇒ String
61 62 63 |
# File 'lib/vedeu/esc/actions.rb', line 61 def negative "\e[7m" end |
#positive ⇒ String
66 67 68 |
# File 'lib/vedeu/esc/actions.rb', line 66 def positive "\e[27m" end |
#reset ⇒ String
71 72 73 |
# File 'lib/vedeu/esc/actions.rb', line 71 def reset "\e[0m" end |
#show_cursor ⇒ String
76 77 78 |
# File 'lib/vedeu/esc/actions.rb', line 76 def show_cursor "\e[?25h" end |
#underline ⇒ String
81 82 83 |
# File 'lib/vedeu/esc/actions.rb', line 81 def underline "\e[4m" end |
#underline_off ⇒ String
86 87 88 |
# File 'lib/vedeu/esc/actions.rb', line 86 def underline_off "\e[24m" end |