views:

646

answers:

13

What are the Light weight PHP editors available for ubuntu? And is there a ubuntu version of the Notepadd++ editor

Thanks

+6  A: 

Vim?

Very lightweight editor and still very powerful and extendable.

Sebastian Hoitz
You could also try gvim.
Alex JL
gvim is part of the standard vim distribution.
hobbs
+3  A: 

Give Geany a try.

Anand
A: 

Eclipse PDT, Aptana, Zend Studio for Eclipse

RayZ
Not particularly lightweight!
Mez
+5  A: 

If you are looking for a Notepad++ like editor, the default editor in GNOME - gedit - might work well for you. It's also already installed on your system.

Lukáš Lalinský
I can recommend gedit in 95% cases. The only issue with it is that it always runs as a single process. If you edit anything over network (read: over network mount), and it disconnects for a little, gedit will probably freeze for 10 minutes.
culebrón
+1 any reasonable text editor, including the [K]Ubuntu default, is just fine and will syntax-highlight PHP.
bobince
+1  A: 

Does this help?

RCIX
+1  A: 

kate is a pretty good editor, I've always preferred it over gedit.

There's also scintilla and geany

Mez
I agree, Kate is great.
Alex JL
Kate is great, and I used it religiously until I found that I was working on wayyyyy too much stuff, then switched to Komodo Edit (not exactly lightweight!) and vim
Mez
+2  A: 

I am using SciTE mainly for Python programming on Windows but it works great also for PHP on Ubuntu.

It is lightweight but powerful and user-friendly. I've used Notepad++ as well but my personal preference goes to SciTE

luc
SciTE uses the same editor component as Notepad++, so this is a good recommendation for someone who wants a similar editor on a different platform.
hobbs
+2  A: 

I would have to say Komodo Edit here (not Komodo IDE) - I use it extensively and it's quite lightweight (in comparison to Eclipse and Eclipse based editors) and it's more than just a notepad.

bisko
+1, Komodo Edit is the best (imho)!
DaNieL
I agree that Komodo Edit is very good choice. However I think that SciTE is more lightweight
luc
SciTE has some evil bugs with cyrillic characters (or at least had the last time I used it (about an year ago)) and configuration is quite painful (text files)
bisko
A: 

You can use Notepad++ on ubuntu with install Wine. this program use for open file exe

M.Rezaei
A: 

vi/vim and emacs/xemacs can be very powerful, take a look if you have time.

Pierre Guilbert
A: 

Just to mention, not to recommend though :) I've tried Bluefish (available in Synaptic). It's buggy, but at least doesn't crash. Syntax highlighting breaks. Opening new files is slow (it tries to run another process, then opens in the main one). I keep it only as a ring-buoy in case if gedit freezes, and I have to go on working.

culebrón
+2  A: 

JetBrains WebIDE

Max
A: 

scribes is also a good choice~

EthanZ6174