vote up 2 vote down star
2

I have always used a text-editor for my web-projects, but as they get more complicated, some kind of help is pretty much necessary. I need something that will do the following:

  • run on linux
  • be as close to just a text-editor as possible (I use gedit for everything)
  • keep track of object attributes, possibly standardizing the order (i.e. type, id, class, etc)
  • keep track of object relations (i.e. which label goes with which input, etc)
  • tell me if i do something like re-use an "id" by accident
  • work with php

ideally, I'd like this program to be free, but that's probably not gonna happen... Anyone know of a good option?

UPDATE: Thank you all for your suggestions! There are a lot to choose from, and many of them look excellent. As for marking a solution as the accepted one, I'm rather at a loss of which one to pick... Thanks again for everyone's help :)

UPDATE2: Do any/all of these integrate nicely with jQuery?

flag

Type PHP IDE into the search box at the top right and you'll get all the answers you need. – karim79 Aug 22 at 23:36
1  
Stick with gedit. Remembering the variables and class relationships will help you manage the complexity of your projects. However, I've never used an IDE, so I can't fairly compare the IDE development with manual development. – Evan Kroske Aug 22 at 23:43
3  
@Evan You can't be serious about not needing an IDE just so you can memorize everything by heart? Although I agree with you that we easily get to accustomed to IDE comfort, on real-life jobs you just can't do everything with gedit. – galaktor Aug 22 at 23:58
I write the same way as Evan does. The only thing I use is Notepad2 with PHP syntax highlighting. None of the function names are reserved or anything like that, I just remember them, and for the most part I also remember what variables it needs in what format to get the job done. That and I keep the PHP.net website open always :). – Mark Tomlin Nov 26 at 13:57

14 Answers

vote up 6 vote down check

Since Eclipse was already mentioned and even though this might be to large for what you are looking for...

Aptana Studio (based on Eclipse) is specialized on web development and has some really nice features. Comes as stand-alone or eclipse plug-in.

link|flag
vote up 0 vote down

Eclipse.

  • Free
  • Runs on linux, windows, mac
  • Supports SCM

Alternately, Aptana is a build of Eclipse with a focus on web development.

The only place these tools don't meet your requirements is that they can be quite large.

Also, I don't know of anything, large or small, that warns you of attribute reuse andkeeps track of attributes and relations.

link|flag
Nice, but I think he's looking for something much more compact. Eclipse is quite a monster just for editing html (imo). – galaktor Aug 22 at 23:36
vote up 0 vote down

Check out Bluefish,

http://bluefish.openoffice.nl/screenshots.html

I haven't used it personally, but as far as HTML editors go for linux, it is the only one that comes to mind.

link|flag
vote up 1 vote down

Scratch "be as close to just a text-editor as possible (I use gedit for everything)" and I'd recommend Aptana Studio in a heart-beat. Does pretty much most of the things you require and is built on top of Eclipse. Downside - a bit bulky and large JS files (in my case 2000+ loc) degrade performance.

http://www.aptana.com/studio/download

link|flag
Darn, your post showed up the instance I posted mine :-) – galaktor Aug 22 at 23:39
Bulky and Large -- If something is smaller, or doesn't require bells and whistles, gedit has great code-completion (shortcuts), and syntax hilighting, etc. I use aptana or gedit. More-so gedit, but aptana is nice for javascript, php, and rails because it finds quite a few blantant errors, but at the expense of speed. – CodeJoust Nov 26 at 13:58
vote up 3 vote down

There's a higher learning curve than most editors, but vim and the taglist plugin:

http://www.vim.org/scripts/script.php?script%5Fid=273

http://www.vim.org/

After a few months of using you'll be far more efficient at editing text due to the sheer number of combinations/shortcuts in vim, it's just so powerful and can easily be extended by custom plugins that even you could make yourself.

link|flag
+1 for vim! Gvim if you are reliant on your mouse. – ken Aug 22 at 23:42
Mouse works in console vim, too, even inside a screen over SSH. – Eevee Aug 23 at 0:10
Vim is intimidating, but if you commit to it for a solid month, and plan on learning at least one new command each time you have memorized and used another, you'll be SO happy. Also, GVim is nice, but (for me) it's because of better colorscheme support. – 42 Aug 23 at 3:13
I tried switching to vim, but the thing I couldn't live with was the inability to copy and paste from GVim to another application. Vim seems to have it's own copy+paste system that doesn't work with the OS – nbv4 Aug 23 at 4:38
Not true at all. GVim is completely capable of using the OS clipboard for copy/paste (and the Edit/Copy and Edit/Paste menu entries do exactly that). Regular Vim can, too, if compiled with the right options. – hobbs Aug 23 at 5:17
show 2 more comments
vote up 0 vote down

Bluefish. Free, but might not cover all of your requirements.

link|flag
vote up 0 vote down

Take a look at Activestate's Komodo Edit 5.1. Here is the featurelist

EDIT: I almost forgot jEdit

link|flag
I use Komodo Edit on Windows, mainly for HTML editing. It's a very good Editor/IDE. – galaktor Aug 22 at 23:44
i use it on windows and ubuntu..works like a charm – Perpetualcoder Aug 23 at 0:12
vote up 0 vote down

there are many HTML editors, but I don't like them...

phpDesigner is a good choice for you!

instead, I use Notepad++ =D

link|flag
notepad++ on linux?? – Perpetualcoder Aug 22 at 23:43
I suppose that's why he added a smiley ;) – galaktor Aug 22 at 23:55
vote up 2 vote down

Netbeans - has auto complete as well. And it comes with with add-ons for PHP. It's completely free.

http://www.netbeans.org/

link|flag
vote up 1 vote down

I use geany a lot. low footprint compared the java editor ;)

link|flag
vote up 2 vote down

Geany. Super lightweight, meets many of your requirements and feels like text editor first and foremost.

link|flag
vote up 0 vote down

Notepad++ is completely open-source and free. It is compiled to run on multiple operating systems. It is extremely light-weight compared to other editors, which makes it faster and more powerful for slower computers. I does syntax highlighting for many supported languages, and allows highlighting of variable/element names. It is what I use and I highly recommend it.

http://notepad-plus.sourceforge.net/uk/site.htm

link|flag
It also includes auto-completion (ctrl + space). I have never heard of someone using np++ on another system than windows, would be nice to hear if someone can use it on linux. – galaktor Aug 24 at 19:14
vote up 1 vote down

I recommend you NetBeans.. its free. it is available for all platforms, and mostly it is good for editing php, jsp, java, css, html, ...

believe me, i'm using it for php development and its the best suited ide i can find...

link|flag
vote up 0 vote down

I would like to recommend jEdit.

link|flag

Your Answer

Get an OpenID
or

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