Melissa
Melissa

Reputation:

Text Wrapping in Gedit

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");
}

Upvotes: 2

Views: 1434

Answers (1)

John Feminella
John Feminella

Reputation: 311496

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

Upvotes: 2

Related Questions