I have used Wokwi.com website for coding since I have started learning.
But there is something unique with the compiler that Wokwi uses.
The code completion in the website makes coding super easy.
Now instead of writing the code and then select it all and then paste it in the IDE to upload it, I have tested code completion in VScode, Atom.io and SublimeText.
But not all the code completion is as perfect as Wokwi website is.
For example when I complete digitalWrite command Wowki will type it like this:
digitalWrite();
While the other softwares complete it like this:
digitalWrite
even in the for command
Wokwi
for(){
}
Others:
for
(or maybe)
for()
So is there a way I can make Wokwi code completion run with any of the softwares?
Or can I edit the code completion that the softwares uses to get it as perfect as Wokwi website does?
Or maybe upload the code directly from Wokwi website?
Note: missing the semicolon at the end of the commands is what triggers me tbh