99% of the time when I start a new sketch I press CTRL-n and an new empty windows open
Then I write something I "always" start with
void setup()
{
Serial.begin(115200);
Serial.println(Start...);
}
void loop()
{
Serial.println();
}
It would be great if the IDE fills the new window with such content to speed up starting a new sketch.
Preferably this text is read from a file called CTRLN.pde or new.pde or so. This way the user can patch the default content easily.
This morning I started some fiddling with AutoHotKey.exe to get something similar done, it has a lot of possibilities - see AHK-code below -
Works quite well on windows, but it won't on linux or Mac-OS

- That's why I propose/prefer a build in solution.
AutoHotKey script for WINDOWS-a key combination to generate a minimum sketch
#a::
Send void setup() {Enter} {{} {Enter} Serial.begin(115200); {Enter} Serial.println("Start..."); {Enter} {}} {Enter} {Enter}
Send void loop() {Enter} {{} {Enter} Serial.println(); {}} {Enter} {Enter} {Control Down} t {Control Up}
return