Hello first thanks for the great software. I was using Editplus until I found Notepad++ and Notepad++ is better.

The indentation in Notepad++ looks like this:

function test(){
....if (a){
........echo "I AM A VERY LONG LINE SO I WILL BE WRAPPED INTO
THE NEXT LINE";
....}
}

It would be easier to look in large files if it can display the wrapped text like this:

function test(){
....if (a){
........echo "I AM A VERY LONG LINE SO I WILL BE WRAPPED INTO
........THE NEXT LINE";
....}
}

Maybe it's not clearly better but I was used to the 2nd pattern. Is there any way to make Notepad++ display wrapped codes like the 2nd method?