More termios settings on startup, to ensure reporting of signal, flow control, and NL/CR keys
This commit is contained in:
parent
696d5258a5
commit
dda9be9110
3
demo.c
3
demo.c
|
@ -14,7 +14,8 @@ int main(int argc, char *argv[]) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int old_lflag = termios.c_lflag;
|
int old_lflag = termios.c_lflag;
|
||||||
termios.c_lflag &= ~(ICANON|ECHO);
|
termios.c_iflag &= ~(IXON|INLCR|ICRNL);
|
||||||
|
termios.c_lflag &= ~(ICANON|ECHO|ISIG);
|
||||||
|
|
||||||
tcsetattr(0, TCSANOW, &termios);
|
tcsetattr(0, TCSANOW, &termios);
|
||||||
|
|
||||||
|
|
|
@ -112,8 +112,7 @@ termkey_t *termkey_new_full(int fd, int flags, size_t buffsize, int waittime)
|
||||||
|
|
||||||
termkey_register_c0(tk, TERMKEY_SYM_BACKSPACE, 0x08, "Backspace");
|
termkey_register_c0(tk, TERMKEY_SYM_BACKSPACE, 0x08, "Backspace");
|
||||||
termkey_register_c0(tk, TERMKEY_SYM_TAB, 0x09, "Tab");
|
termkey_register_c0(tk, TERMKEY_SYM_TAB, 0x09, "Tab");
|
||||||
termkey_register_c0(tk, TERMKEY_SYM_ENTER, 0x0a, "Enter");
|
termkey_register_c0(tk, TERMKEY_SYM_ENTER, 0x0d, "Enter");
|
||||||
termkey_register_c0(tk, TERMKEY_SYM_ENTER, 0x0d, NULL);
|
|
||||||
termkey_register_c0(tk, TERMKEY_SYM_ESCAPE, 0x1b, "Escape");
|
termkey_register_c0(tk, TERMKEY_SYM_ESCAPE, 0x1b, "Escape");
|
||||||
|
|
||||||
// G1
|
// G1
|
||||||
|
|
Loading…
Reference in New Issue