I'm using Notepad++ 6.6.9. In Java I'm able to use code folding as simple as this:
//{ region 1
public Core(){}
//}
I don't even need to save. Just add this sort of code and collapsable itens are added around it.
But in PHP I can't make it work. I've tried the following:
//{#region LOADING
//{START LOADING
//{ region 1
//}
//}END example
//}#endregion LOADING
It simply doesn't work. Could somebody point me any working code, or a tutorial on how to configuring some custom one?