After the terminal "cordova run ios" does not cancel keyboard input

Using Cordoba 4.1.2. After successfully launching the project on the iPad using:

cordova run ios

and exiting LLDB using the killor commands safequit, the terminal window will no longer echo the keyboard.

Is there a shell command that I can enter to restore the normal function of a terminal window? Currently, I need to exit the terminal and start a new one after testing my cordova application.

+4
source share
1 answer

It seems that one of the scripts being executed cordova run iosdisables the terminal echo. Terminal settings before:

~>stty
speed 9600 baud;
lflags: echoe echoke echoctl pendin
iflags: iutf8
oflags: -oxtabs
cflags: cs8 -parenb

And after:

speed 9600 baud;
lflags: -icanon -iexten -echo echoe echoke echoctl
iflags: inlcr iutf8
oflags: -oxtabs
cflags: cs8 -parenb
dsusp   eof     lnext   reprint status  werase
<undef> <undef> <undef> <undef> <undef> <undef>  

, LLDB :

stty echo
+2

All Articles