views:

230

answers:

1

Is is possible in Gedit (The GNOME text editor) to indent a wrapped line of text?

For Example:

if (x > y) {
    System.out.println("ABCDEFGHIJ
    KLMNOPQRSTUVWXYZ");
}

instead of:

if (x > y) {
    System.out.println("ABCDEFGHIJ
KLMNOPQRSTUVWXYZ");
}
+1  A: 

It's not possible with GEdit out of the box, but this is a request that's being worked on.

John Feminella
is it really that hard to implement?
Mark