Just thought you might be interested to know that the latest Espruino builds now have tab-completion on the left-hand side.
If you type di then [tab] it'll autocomplete to digital and will show you digitalPulse, digitalWrite and digitalRead. You can then just type W[tab] and it'll autocomplete to digitalWrite.
Same happens with simple a.b type things. For instance Ma[tab].ra[tab] will give you Math.random.
It's not perfect yet, but is still pretty handy and will hopefully make writing code on the left-hand side a bit more fun.
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.
Hi!
Just thought you might be interested to know that the latest Espruino builds now have tab-completion on the left-hand side.
If you type
di
then[tab]
it'll autocomplete todigital
and will show youdigitalPulse
,digitalWrite
anddigitalRead
. You can then just typeW
[tab]
and it'll autocomplete todigitalWrite
.Same happens with simple
a.b
type things. For instanceMa
[tab]
.
ra
[tab]
will give youMath.random
.It's not perfect yet, but is still pretty handy and will hopefully make writing code on the left-hand side a bit more fun.