This is a discussion on Outlinin block of code within the PHP General forums, part of the PHP Programming Forums category; Hello! Anybody know any good PHP ide with support of code outlining like Visual ..NET. On the left side where ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello!
Anybody know any good PHP ide with support of code outlining like Visual ..NET. On the left side where are usualy line numbers is "+" and you can group functions, classes or custom defined blocks of code. -- Best regards, Uros mailto:uros.gruber@sir-mag.com |
|
|||
|
> Anybody know any good PHP ide with support of code outlining like Visual
> .NET. > On the left side where are usualy line numbers is "+" and you can group > functions, classes or custom defined blocks of code. Visual Slick Edit. It is by far the best IDE I've run across. It's both versatile and pliable. I've used many of the IDEs suggested in the FAQ but this has everything I could possibly need and more. The features you detail above are just a very few of the number contained within. Chris |
|
|||
|
Uros --
...and then Uros said... % % Hello! Hi! % % Anybody know any good PHP ide with support of code outlining like Visual % .NET. I don't know from V.NET, but ... % % On the left side where are usualy line numbers is "+" and you can group % functions, classes or custom defined blocks of code. ... vim does a nice job "folding", which sounds like what you describe. I tend to use foldmarkers and be picky, but it has a number of ways including some fairly automated approaches to define the folds ("blocks"). Surf over to vim.org for more. % % % -- % Best regards, % Uros mailto:uros.gruber@sir-mag.com HTH & HAND :-D -- David T-G * There is too much animal courage in (play) davidtg@justpickone.org * society and not sufficient moral courage. (work) davidtgwork@justpickone.org -- Mary Baker Eddy, "Science and Health" http://justpickone.org/davidtg/ Shpx gur Pbzzhavpngvbaf Qrprapl Npg! -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE/xMQmGb7uCXufRwARArcCAKCtAtWu3aI9Un+Syle/xr98i76I8gCbByae Z7KA+7wvtXUyxmaBbWBg2Bw= =t+s9 -----END PGP SIGNATURE----- |
|
|||
|
* Thus wrote David T-G (davidtg-php@justpickone.org):
> > % > % On the left side where are usualy line numbers is "+" and you can group > % functions, classes or custom defined blocks of code. > > ... vim does a nice job "folding", which sounds like what you describe. > I tend to use foldmarkers and be picky, but it has a number of ways > including some fairly automated approaches to define the folds ("blocks"). > My thoughts exactly, folding works great. You can navigate a file with 30 functions/classes all in one screen. There is even a plugin for vim that creates a left side code navigation. It creates a list of all the functions and by clicking on them, the right side jumps to that function. An example of the folding display: +-- 49 lines: function foo($param1, $param2) { --------------- +-- 65 lines: function foo2($param1, $param2) { -------------- +-- 127 lines: class bar {------------------------------------- class bar2 { var $v; +--- 3 lines: function bar2() {------------------------------- function foo() { //editing this method } +--- 10 lines: function zap() {-------------------------------- } Curt -- "My PHP key is worn out" PHP List stats since 1997: http://zirzow.dyndns.org/html/mlists/ |
|
|||
|
Uros wrote:
> Hello! > > Anybody know any good PHP ide with support of code outlining like Visual > .NET. > > On the left side where are usualy line numbers is "+" and you can group > functions, classes or custom defined blocks of code. SciTE [ http://www.scintilla.org ] (also has intellisense, and is free) -- Burhan Khalid phplist[at]meidomus[dot]com http://www.meidomus.com ----------------------- "Documentation is like sex: when it is good, it is very, very good; and when it is bad, it is better than nothing." |
|
|||
|
On Wednesday 26 November 2003 20:23, Burhan Khalid wrote:
> Uros wrote: > > Hello! > > > > Anybody know any good PHP ide with support of code outlining like Visual > > .NET. vim 6.xx can do it -Stathis > > > > On the left side where are usualy line numbers is "+" and you can group > > functions, classes or custom defined blocks of code. > > SciTE [ http://www.scintilla.org ] (also has intellisense, and is free) > |