Are there any working Lua plugins for Eclipse Galileo?

I work a lot in Lua and work mostly in Eclipse Galileo. Sorry, no working syntax highlighting plugin is shown. I've tried almost every available version of LuaEclipse and LunarEclipse (including the beta preview), but didn't get anywhere. In both cases, I get errors while installing them, referring to the missing packages.

Disappointing thing - all I really care about is syntax highlighting, which should be trivial. Has anyone else had any luck with this?

Edit: Thanks for the suggestions. I have pasted the error I get while installing LuaEclipse 1.3.1 preview below.

An error occurred while collecting items to be installed
  session context was:(profile=epp.package.cpp, phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Collect, operand=, action=).
  No repository found containing: osgi.bundle,org.eclipse.cvs,1.0.300.v200909170800
  No repository found containing: osgi.bundle,org.eclipse.jdt.core,3.5.1.v_972_R35x
  No repository found containing: osgi.bundle,org.eclipse.jdt.ui,3.5.1.r351_v20090821-0800
  No repository found containing: osgi.bundle,org.eclipse.team.cvs.ui,3.3.201.R35x_v20090826-0905
  No repository found containing: osgi.bundle,org.eclipse.ui.views.log,1.0.100.v20090731
  No repository found containing: org.eclipse.update.feature,org.eclipse.cvs,1.1.101.R35x_v20090811-7E79FEd9KKF5H2YDWFLLBL01A16
  No repository found containing: binary,org.eclipse.cvs_root,1.1.101.R35x_v20090811-7E79FEd9KKF5H2YDWFLLBL01A16

      

+2


source to share


3 answers


LuaEclipse is the only Lua plugin for Eclipse I can find. However, there are a number of other editors you could try if they don't install correctly for you.

The Pipmak Wiki lists various Lua editors that you could try.

Update: An installation error message complains about the lack of CVS. This error sometimes occurs when you are behind a proxy, you can configure Eclipse to use your proxy like this:



  • Go to Window-> Preferences
    • Click Install / Update
    • Check Enable HTTP Proxy Connection
    • Enter your proxy in the proxy host address and proxy port in the HTTP proxy host
    • Click "OK"

Unless you are behind a proxy server. Your P2 repository may be in an inconsistent state. HAve you tried to install a clean install of Eclipse?

+4


source


Have you tried EclipseColorer ? It can highlight many syntaxes. In fact, even if he can not, here you can find documentation on how to create a new profile for the illumination of a particular language.



+2


source


I guess this is not an answer to your question, but I have a semi-working version of LuaEclipse (https://github.com/KINFOO/LuaEclipse) that I compiled on Helios did not compile. The resulting plugin doesn't do much, but does syntax highlighting and catch syntax errors. Since all you seem to care about is syntax highlighting, would you like to give it a try? I have a private build that I can give you a try. Please note that I've only tried this on Macbook pro and only on Eclipse Helios (not Galileo) and it is not very functional in any other way (no debugging, etc.).

+1


source







All Articles