shamun toha - 2009-01-24

In few other editor there is a great feature added, but in this its missing. Is it possible to read and put second tab ? for inside code referenced include files like (include/require in php or include in c/c++ )

As following mention GUI (master tab > sub tab > master tab codes ):

------------------------------------------- first tab main files ------------------
[root0.php] [root1.php]
------------------------------------------- root0.php inside files --------------
[user1.php] [ user2.php]
-------------------------------------------root0.php code-----------------------
<?php
include "user1.php";
include_once "user1.php";

?>

-------------------------------------------------------------------------------------