1/* Open_Line_Below.bsh: mimics the Shift-Enter combination in Eclipse,
2   opening a new blank line below the current cursor position.
3   Author: Scott LeBaron
4   License: GPL v 2.0
5*/
6textArea.goToEndOfWhiteSpace(false);
7textArea.insertEnterAndIndent();
8