mirror of
https://github.com/alrayyes/st
synced 2023-11-14 15:56:30 +00:00
add parser loop
This commit is contained in:
parent
5d055fdc7c
commit
dc01596e6d
13
std.c
13
std.c
@ -312,5 +312,18 @@ main(int argc, char *argv[]) {
|
|||||||
eprint("usage: st [-v]\n");
|
eprint("usage: st [-v]\n");
|
||||||
getpty();
|
getpty();
|
||||||
shell();
|
shell();
|
||||||
|
fptm = fdopen(ptm, "r+");
|
||||||
|
if(!fptm)
|
||||||
|
eprintn("cannot open slave pty");
|
||||||
|
for(;;) {
|
||||||
|
c = getc(fptm);
|
||||||
|
switch(c) {
|
||||||
|
case '\033':
|
||||||
|
parseesc();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
putchar(c);
|
||||||
|
}
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user