Well, I've added the Alt-Enter key code. If there's something like that that can be added - for instance some character combination at the start of a line => silently accept command and prefix output with a special character then both types of command-line can coexist.
Thing is, your example of the command history search could be implemented relatively easily on the Web IDE (by grepping for lines starting with > and :) and it would work without problems. Maybe it's not 'pretty', but to me it's prettier than having some app-specific protocol and then completely reimplementing the IDE :)
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Well, I've added the Alt-Enter key code. If there's something like that that can be added - for instance
some character combination at the start of a line => silently accept command and prefix output with a special character
then both types of command-line can coexist.Thing is, your example of the command history search could be implemented relatively easily on the Web IDE (by grepping for lines starting with
>
and:
) and it would work without problems. Maybe it's not 'pretty', but to me it's prettier than having some app-specific protocol and then completely reimplementing the IDE :)