There are plenty of small editors like Notepad++, vim, & SciTE - but they only work on one file at a time. In other words, they aren't aware of the whole scope of the codebase.

On the other hand, all the full IDE's I have seen which offer code-completion (over all files in a project) take a good amount of memory to run. Eclipse PDT, PHPStorm, etc..

I'm looking for a tiny IDE with nothing more than code completion and syntax coloring to move around some very limit dev systems running PHP. Is there anything like this?

Windows or Linux

Update

To clarify, if the app can't do multi-file code completion (complete code in one file, based on classes in other files) then it doesn't fit my requirements.

link|improve this question

5  
Err.. Notepad++ allows editing of more than one file at a time. Not sure on the other two. In general, code completion is a very resource intensive feature. It is likely most of the bloat you notice with other IDEs is the result of performing code completion analysis, as most of the other features don't do anything unless they are used. (And in most cases, you can simply disable those extra features) – Billy ONeal Aug 30 '10 at 22:19
Try Jedit that does multiple files,syntax coloring and Windows or Linux. Agree with Billy on code completion issues, Jedit doesn't do code completion. – MikeAinOz Aug 30 '10 at 22:34
feedback

8 Answers

up vote 8 down vote accepted
+50

Geany is my editor of choice. It's small, cross-platform, (GTK) and supports literally dozens of languages. (including PHP) It has syntax highlighting, code-completion and even custom "build" commands. (such as php -l for sanity checks)

link|improve this answer
I'd like to add that it's very lightweight compared to other IDEs (which is what the asker is asking for); It starts up in about 5 seconds, while NetBeans takes a whole minute. – imgx64 Sep 9 '10 at 13:56
1  
Wow, Geany is amazing! It takes only 9MB to run and starts as fast as you can click a file! Built in terminal, info status bar, supports most languages out of the box, file browser, you don't have to create a new project - just open a folder, shows all variables used (click to goto), defaults to tabs+UTF-8, and the list goes on-and-on! Perfect answer to light-weight IDE! AUTO-COMPLETES CLASS NAMES BASED OFF CLASSES YOU WRITE! – Xeoncross Sep 9 '10 at 19:06
1  
Score! Another convert :) – Dominic Barnes Sep 9 '10 at 20:32
feedback

Netbeans is the best performing PHP editor with code completion that I have used; that said, it's by no means a lightweight editor. But I don't think any kind of editor with code completion is going to be truly lightweight.

link|improve this answer
3  
+1 for mentioning Netbeans. Netbeans is the tool of choice for me when programming (has excelllent support for C, python, Php and Java of course) – Andrei Ciobanu Aug 30 '10 at 23:01
1  
@Xeoncross: In order to support code completion, the editor needs to have most (if not all) of your code in memory, and it needs to have it in such a form so that it can operate on it efficiently enough to give you useful results. That's never going to be cheap in terms of memory. You simply are not going to get code completion features cheaply in terms of computational resources. Code completion is not a small add on feature to an IDE; it is often the most complex and resource intensive part of the IDE. You're either going to have to pay for that, or you're not going to have code completion. – Billy ONeal Aug 31 '10 at 2:15
1  
+1 for NetBeans for PHP. Nowhere near lightweight though :P – ign Sep 9 '10 at 13:05
2  
@Alexander: He didn't ask for which editor had the best PHP support, he asked which was the best performing. Even fans of Eclipse aren't going to say it's well performing editor. More to the point, the OP explicitly asked to avoid PDT in his question! (Personally I think Eclipse is the worst editor I have ever used, but that's not really relevant to the question). – Billy ONeal Sep 9 '10 at 13:25
2  
One thing I never understood is why so many of these great IDEs are built with Java. That alone is a performance problem :P – Franz Sep 9 '10 at 16:32
show 8 more comments
feedback

Try Komodo Edit or Komodo IDE. It has all PHP assistance features included and even debugging (in IDE).

http://www.activestate.com/komodo-ide

It has some bugs like PHP variables showing up in JavaScript autocomplete.

Try the v6 beta: http://www.activestate.com/komodo-edit/downloads

link|improve this answer
Thanks, but I'm not looking for just another IDE. I'm looking for a small, basic, light-weight IDE. However, I'm sure people using normal IDE's will like this. – Xeoncross Aug 31 '10 at 1:17
2  
@Xeoncross: "I don't want to use a normal IDE. I want to use an editor with all the features of an IDE, but I want to be less resource intensive than an IDE". .... you cannot have it both ways. Pick one. – Billy ONeal Aug 31 '10 at 2:32
Komodo is not a language-specific IDE, so you are looking for a PHP-only IDE? – SHiNKiROU Aug 31 '10 at 3:07
@Billy where are you getting your wild quotes? My question is very simple - What is the smallest IDE with code completion? – Xeoncross Aug 31 '10 at 16:49
Komodo Edit is definitely lighter than an IDE: activestate.com/komodo-edit/compare-with-komodo-ide – dlamblin Sep 7 '10 at 21:56
feedback

I use MacVim and I often have multiple files open in separate tabs.

Vim supports syntax highlighting out of the box and code completion if you use ctags plugins.

See also:

link|improve this answer
Does exuberant ctags support php? – dlamblin Sep 7 '10 at 21:52
@dlamblin: The second link I give above is about using exuberant ctags with vim. – Bill Karwin Sep 7 '10 at 22:12
feedback

Nusphere PHPEd. That's the one I use after horrible Java based alternatives and Zend Studio to name the waterheaded ones :P. It's blazing fast, has built in code completion library, fully customizable syntax highlighting for PHP 4.x, PHP 5.x, PHP 5.3, html, css, smarty, perl, sql, xml, c/c++, python, asp, js and who knows what else.

Highlights:

  • Über fast development environment.
  • Awesome file manager options (SFTP, SSH, etc.)
  • Fully customizable syntax highlighting (light/dark profiles)
  • Built in debugger
  • Fully customizable editor options (brackets, completion, whatever...)
link|improve this answer
1  
I'm considering switching to this IDE, it's a shame that Zend had discontinued the Studio 5.5, the newer version has all the crap of Eclipse and 5.5 only runs on XP. – Alix Axel Sep 9 '10 at 19:22
Yeah, I used Zend Studio 5.5 too and when they changed to eclipse, the whole became a bloated nightmare. PHPEd Roxx. – Jauzsika Sep 9 '10 at 20:33
feedback

PHP Expert Editor is a fairly small app that allows editing of multiple files, has syntax highlighting and integrates with PHP to do syntax checking. I've been using it for years.

link|improve this answer
feedback

I use notepad++ most of the time. But you could try out this free IDE which I think fits your bill Codelobster It's around 13mb

link|improve this answer
feedback

The best PHP IDE now in production would be Zend Studio, but it's not free. So the closest would be Eclipse PDT, but you don't like it.

Aptana Studio for PHP was a lot better, but was discontinued, and Aptana became an IDE for JS and Ruby now, but I tried to save what's left of it, so it's still available.

So far I didn't find anything better than Aptana Studio for PHP.

Big throwback though - it only supports syntax of PHP 5.2.

Aptana is also one of the greatest IDE for Javascript, and HTML+CSS editing is also a step further than in NetBeans (code completion for CSS selectors, based on HTML).

Aptana also has support for Smarty template engine, which is great for me.

Best part - no installation required. Just unzip and run. It only requires JRE to be installed, and most of us do have it installed. And, it may create conflicts with Eclipse projects, so for a clean experiment, open a project that contains no Eclipse service files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.