Action Directory / Append Mode

Install

Jumps to the end of the file with a new paragraph so that you can easily start appending text to a long file.

Shared by @mcrowe

Script

var content = editor.getText() + '\n\n';
editor.setText(content);
editor.setSelectedRange(content.length-1);