Code folding in Notepad++ for PHP -
I'm using Notepad ++ 6.6.9. In Java, I am able to use the code folding:
// {field 1 public core () {} //} save me Just do not need to add such code and the pieces collapsing around it are added.
But in PHP I can not work it I have tried the following:
// {# LOADING // {START LOADING // {area 1 // } // END example //} # ingestion LOADING This just does not work, can anyone point me to any work code, or how to configure some custom one is? :
I have only seen one, so you can just write it:
#region LOADING // Your code here #endregion LOADING clearly works # as a comment in PHP
Comments
Post a Comment