Changed escape key from ^g to ^t

After renaming to "tio" it makes sense to change the escape key
accordingly. Hence, the new escape key is ^t.

Meaning, in session, its now ctrl-t + q to quit.
This commit is contained in:
Martin Lund 2016-05-07 14:31:24 +02:00
parent f6b69d244d
commit 72a287f189
5 changed files with 7 additions and 7 deletions

View file

@ -76,7 +76,7 @@ void wait_for_tty_device(void)
/* Exit upon ctrl-g + q sequence */
c_stdin[2] = c_stdin[1];
c_stdin[1] = c_stdin[0];
if ((c_stdin[1] == KEY_Q) && (c_stdin[2] == KEY_CTRL_G))
if ((c_stdin[1] == KEY_Q) && (c_stdin[2] == KEY_CTRL_T))
exit(EXIT_SUCCESS);
}
}
@ -223,13 +223,13 @@ int connect_tty(void)
{
/* Input from stdin ready */
status = read(STDIN_FILENO, &c_stdin[0], 1);
if ((c_stdin[0] != KEY_Q) && (c_stdin[0] != KEY_CTRL_G))
if ((c_stdin[0] != KEY_Q) && (c_stdin[0] != KEY_CTRL_T))
tainted = true;
/* Exit upon ctrl-g + q sequence */
c_stdin[2] = c_stdin[1];
c_stdin[1] = c_stdin[0];
if ((c_stdin[1] == KEY_Q) && (c_stdin[2] == KEY_CTRL_G))
if ((c_stdin[1] == KEY_Q) && (c_stdin[2] == KEY_CTRL_T))
exit(EXIT_SUCCESS);
/* Forward input to tty device */