Append Mode
Shared by @mcrowe
Jumps to the end of the file with a new paragraph so that you can easily start appending text to a long file.
Script
var content = editor.getText() + '\n\n';
editor.setText(content);
editor.setSelectedRange(content.length-1);