File: Open_Line_Below.bsh

package info (click to toggle)
jedit 4.5.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 12,252 kB
  • sloc: java: 90,581; xml: 88,372; makefile: 55; sh: 25
file content (7 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
/* Open_Line_Below.bsh: mimics the Shift-Enter combination in Eclipse,
   opening a new blank line below the current cursor position.
   Author: Scott LeBaron
   License: GPL v 2.0
*/
textArea.goToEndOfWhiteSpace(false);
textArea.insertEnterAndIndent();