This Product Ideas board is currently undergoing updates, but please continue to submit your ideas.
I just wanted to say awesome work to the AirTable team on the development environment inside scripting blocks. I like coding in it even more than using WebStorm/intelliJ, which I’ve always considered state of the art!
The one feature I think that would make it even more helpful would be to have a shortcut to copy and paste the previous line or highlighted section (cmd + d in WebStorm). This is super useful for speeding up the basic structural stuff…
Eg.
const fromQuery = await base.getTable(fromTableName).selectRecordsAsync(query);
//would be nice to copy this down below and speed up typing
const toQuery = await base.getTable(toTableName).selectRecordsAsync(query);