views:

243

answers:

4

I'm looking for a lua IDE on linux. The majority of suggestions I've seen so far are windows only.

I would have liked to use one of the Eclipse plugins for lua, but both of them -- LuaEclipse and LunarEclipse -- haven't been updated in nearly two years, and don't seem to work with Eclipse 3.5. If you have had any luck in getting lua working in Eclipse, I would be very interested.

+2  A: 

From this question you could try the beta site for LuaEclipse and see if it works.

Callum Rogers
Ah, hadn't tried that site yet. Still getting errors during installation on 3.5, though.
Brendan Abel
+2  A: 

LuaEclipse 1.2 and earlier does not work with newer Eclipses.

LuaEclipse 1.3 "beta" definitely does work with Eclipse 3.5 on Linux (at least on my Ubuntu box).

Grab it here: http://luaeclipse.luaforge.net/preview/update-site

Also you may try LuaEclipse 2.0 beta (less stable): http://github.com/KINFOO/LuaEclipse/#readme

KDevelop also has some support for Lua (at least syntax highligting, which is enough in many cases).

Note also, that if you do not want an IDE, but merely an editor, you may use kate, gedit, SciTE and many other programmer's editors, available for Linux. Most of them support Lua out of the box (at least for syntax highlighting, some even have some rudimentary code completion).

Not to mention vim and emacs. :-)

Alexander Gladysh
A: 

You might investigate SciTE. Its available for both Windows and Linux, and is based on the Scintilla programmer's text editor component. It also supports scripting the editor in Lua, and can be used to debug Lua scripts.

RBerteig
A: 

I use gedit with some plugins. That gives me syntax highlighting. I have a console in another window.

It would help to know what particular functionalities you need from your IDE, besides that.

egarcia