Module: Question::TTY::CODE

Defined in:
lib/question/tty.rb

Constant Summary collapse

SPACE =
" "
TAB =
"\t"
RETURN =
"\r"
LINEFEED =
"\n"
ESCAPE =
"\e"
UP =
"\e[A"
DOWN =
"\e[B"
RIGHT =
"\e[C"
LEFT =
"\e[D"
BACKSPACE =
"\b"
DELETE =
"\e[3"
CTRL_J =
"\x0A"
CTRL_N =
"\x0E"
CTRL_K =
"\x0B"
CTRL_P =
"\x10"
SIGINT =
"\x03"
HIDE =
"\e[?25l"
SHOW =
"\e[?25h"
CLEAR_DOWN =
"\e[0J"
SAVE =
"\e7"
RESTORE =
"\e8"
NOOP =

Used in tests to determine if a question requires input.

"\e[0n"